Update .emacs.d/README.org
This commit is contained in:
parent
396d4345f8
commit
e761cff207
1 changed files with 19 additions and 18 deletions
|
@ -295,6 +295,7 @@ Magit is a git client in Emacs.
|
|||
*** tree-sitter
|
||||
Tree-sitter is a built-in Emacs package that allows us to have extremely well integrated language grammar. Here, we're setting up the list of sources, most of them being on tree-sitter's official GitHub, as well as hooking up the languages to their different modes.
|
||||
#+begin_src emacs-lisp
|
||||
(setq treesit-font-lock-level 4) ;; more coloring!
|
||||
(setq treesit-language-source-alist
|
||||
'((bash "https://github.com/tree-sitter/tree-sitter-bash")
|
||||
(cmake "https://github.com/uyha/tree-sitter-cmake")
|
||||
|
@ -311,11 +312,11 @@ Tree-sitter is a built-in Emacs package that allows us to have extremely well in
|
|||
(tsx "https://github.com/tree-sitter/tree-sitter-typescript" "master" "tsx/src")
|
||||
(typescript "https://github.com/tree-sitter/tree-sitter-typescript" "master" "typescript/src")
|
||||
(yaml "https://github.com/ikatyang/tree-sitter-yaml")))
|
||||
(setq treesit-font-lock-level 4)
|
||||
|
||||
;; mode bindings to file extensions
|
||||
(add-to-list 'auto-mode-alist '("\\.ts\\'" . tsx-ts-mode))
|
||||
(add-to-list 'auto-mode-alist '("\\.tsx\\'" . tsx-ts-mode))
|
||||
(add-to-list 'auto-mode-alist '("\\.py\\'" . python-ts-mode))
|
||||
|
||||
#+end_src
|
||||
|
||||
* Mail
|
||||
|
|
Loading…
Reference in a new issue