docs(emacs programming): fix treesit urls and add Astro config

This commit is contained in:
Lucien Cartier-Tilet 2024-06-20 09:39:29 +02:00
parent d7c2eadcec
commit 63133d312e
Signed by: phundrak
GPG Key ID: BD7789E705CB8DCA

View File

@ -21,7 +21,8 @@ variables to install grammars for different languages.
css-ts-mode yaml-ts-mode) . lsp-deferred) css-ts-mode yaml-ts-mode) . lsp-deferred)
:init :init
(setq treesit-language-source-alist (setq treesit-language-source-alist
'((bash "https://github.com/tree-sitter/tree-sitter-bash") '((astro "https://github.com/virchau13/tree-sitter-astro")
(bash "https://github.com/tree-sitter/tree-sitter-bash")
(c "https://github.com/tree-sitter/tree-sitter-c") (c "https://github.com/tree-sitter/tree-sitter-c")
(cmake "https://github.com/uyha/tree-sitter-cmake") (cmake "https://github.com/uyha/tree-sitter-cmake")
(common-lisp "https://github.com/theHamsta/tree-sitter-commonlisp") (common-lisp "https://github.com/theHamsta/tree-sitter-commonlisp")
@ -32,7 +33,7 @@ variables to install grammars for different languages.
(go "https://github.com/tree-sitter/tree-sitter-go") (go "https://github.com/tree-sitter/tree-sitter-go")
(go-mod "https://github.com/camdencheek/tree-sitter-go-mod") (go-mod "https://github.com/camdencheek/tree-sitter-go-mod")
(html "https://github.com/tree-sitter/tree-sitter-html") (html "https://github.com/tree-sitter/tree-sitter-html")
(js . ("https://github.com/tree-sitter/tree-sitter-javascript" "master" "src")) (js ("https://github.com/tree-sitter/tree-sitter-javascript" "master" "src"))
(json "https://github.com/tree-sitter/tree-sitter-json") (json "https://github.com/tree-sitter/tree-sitter-json")
(lua "https://github.com/Azganoth/tree-sitter-lua") (lua "https://github.com/Azganoth/tree-sitter-lua")
(make "https://github.com/alemuller/tree-sitter-make") (make "https://github.com/alemuller/tree-sitter-make")
@ -41,8 +42,8 @@ variables to install grammars for different languages.
(r "https://github.com/r-lib/tree-sitter-r") (r "https://github.com/r-lib/tree-sitter-r")
(rust "https://github.com/tree-sitter/tree-sitter-rust") (rust "https://github.com/tree-sitter/tree-sitter-rust")
(toml "https://github.com/tree-sitter/tree-sitter-toml") (toml "https://github.com/tree-sitter/tree-sitter-toml")
(tsx . ("https://github.com/tree-sitter/tree-sitter-typescript" "master" "tsx/src")) (tsx "https://github.com/tree-sitter/tree-sitter-typescript" "master" "tsx/src")
(typescript . ("https://github.com/tree-sitter/tree-sitter-typescript" "master" "typescript/src")) (typescript "https://github.com/tree-sitter/tree-sitter-typescript" "master" "typescript/src")
(yaml "https://github.com/ikatyang/tree-sitter-yaml")))) (yaml "https://github.com/ikatyang/tree-sitter-yaml"))))
#+end_src #+end_src
@ -1445,6 +1446,15 @@ Auto-completion for ~emmet-mode~, ~html-mode~, and ~web-mode~.
:after (emmet-mode web-mode)) :after (emmet-mode web-mode))
#+end_src #+end_src
**** Astro
#+begin_src emacs-lisp
(use-package astro-ts-mode
:straight (:build t)
:defer t
:init
(mapc #'treesit-install-language-grammar '(astro css tsx)))
#+end_src
**** CSS **** CSS
Lets customize a bit the built-in CSS mode. Lets customize a bit the built-in CSS mode.
#+begin_src emacs-lisp #+begin_src emacs-lisp