diff options
author | sefidel <contact@sefidel.net> | 2024-12-17 10:58:16 +0900 |
---|---|---|
committer | sefidel <contact@sefidel.net> | 2024-12-17 11:00:24 +0900 |
commit | 8788f8d6b9ff3fd72f3b8eb22b3313470ea014b4 (patch) | |
tree | 945e14827c4c152cfd0c727ac30e96b4da4d9082 | |
parent | 7f61937ce21ef39f7b98b9380a44993732f473a9 (diff) | |
download | nvimrc-8788f8d6b9ff3fd72f3b8eb22b3313470ea014b4.tar.gz nvimrc-8788f8d6b9ff3fd72f3b8eb22b3313470ea014b4.zip |
feat(packs/treesitter): disable html
-rw-r--r-- | fnl/nvrc/packs/treesitter.fnl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fnl/nvrc/packs/treesitter.fnl b/fnl/nvrc/packs/treesitter.fnl index 663436f..e47d166 100644 --- a/fnl/nvrc/packs/treesitter.fnl +++ b/fnl/nvrc/packs/treesitter.fnl @@ -2,8 +2,8 @@ (local {: setup} (require :nvim-treesitter.configs)) -(setup {:ensure_installed [:fennel :lua :nix :rust :haskell :c :go :typst :comment] - :highlight {:enable true :use_languagetree true} +(setup {:ensure_installed [:fennel :lua :nix :rust :haskell :c :go :html :typst :comment] + :highlight {:enable true :use_languagetree true :disable [:html]} :incremental_selection {:enable true :keymaps {:init_selection :gnn :node_incremental :grn |