diff options
| author | Thomas Voss <mail@thomasvoss.com> | 2026-01-17 21:25:56 +0100 |
|---|---|---|
| committer | Thomas Voss <mail@thomasvoss.com> | 2026-01-17 21:25:56 +0100 |
| commit | 826a4636113c8dd5e2fec06f5dc0c2aa47a07cfa (patch) | |
| tree | 14ba9825143381cadab64ba432bcd44f3f4a45ed /.config/emacs/modules/mm-treesit.el | |
| parent | 188c7bcee8903330c59e13390c36a9896401c318 (diff) | |
| parent | 219b79ccd842e73a9862b521b6ed7a5985cba999 (diff) | |
Merge branch 'master' of github.com:Mango0x45/dotfiles
Diffstat (limited to '.config/emacs/modules/mm-treesit.el')
| -rw-r--r-- | .config/emacs/modules/mm-treesit.el | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/.config/emacs/modules/mm-treesit.el b/.config/emacs/modules/mm-treesit.el index bd146ce..6c572ca 100644 --- a/.config/emacs/modules/mm-treesit.el +++ b/.config/emacs/modules/mm-treesit.el @@ -54,7 +54,9 @@ (vim "https://github.com/tree-sitter-grammars/tree-sitter-vim") (vue - "https://github.com/ikatyang/tree-sitter-vue"))) + "https://github.com/ikatyang/tree-sitter-vue") + (yaml + "https://github.com/tree-sitter-grammars/tree-sitter-yaml"))) ;;; Install Missing Parsers @@ -120,7 +122,8 @@ The parsers are taken from `treesit-language-source-alist'." (gomod . "/go\\.mod\\'") (json . "\\.json\\'") (tsx . "\\.tsx\\'") - (typescript . "\\.ts\\'")) + (typescript . "\\.ts\\'") + (yaml . "\\.ya?ml\\'")) "Alist mapping languages to their associated file-names. This alist is a set of pairs of the form (LANG . REGEXP) where LANG is the symbol corresponding to a major mode with the `-ts-mode' suffix |