Browse Source

Add tree-sitter

master
10sr 3 years ago
parent
commit
382806975c
Signed by: 10sr GPG Key ID: 7BEC428194130EB2
1 changed files with 10 additions and 1 deletions
  1. +10
    -1
      emacs.el

+ 10
- 1
emacs.el View File

@@ -400,7 +400,7 @@ Otherwize hook it."
(setq-default indent-tabs-mode nil)
(setq-default indent-line-function 'indent-to-left-margin)
;; (setq-default indent-line-function nil)
(setq-default truncate-lines t)
;; (setq-default truncate-lines t)
;; (setq truncate-partial-width-windows nil) ; when splitted horizontally
;; (pc-selection-mode 1) ; make some already defined keybind back to default
(delete-selection-mode 1)
@@ -1081,6 +1081,15 @@ THEM are function and its args."
(add-hook 'prog-mode-hook
'fic-mode))

(when (fboundp 'global-tree-sitter-mode)
(add-hook 'after-init-hook
'global-tree-sitter-mode)
(add-hook 'tree-sitter-after-on-hook
#'tree-sitter-hl-mode))

(with-eval-after-load 'tree-sitter
(require 'tree-sitter-langs nil t))

;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; file handling



Loading…
Cancel
Save