diff --git a/pkgs/nixvim/treesitter.nix b/pkgs/nixvim/treesitter.nix index ea8f50d..2f322e4 100644 --- a/pkgs/nixvim/treesitter.nix +++ b/pkgs/nixvim/treesitter.nix @@ -1,2 +1,19 @@ {...}: { + plugins = { + treesitter = { + enable = true; + # folding = true; + nixvimInjections = true; + settings = { + highlight = { + enable = true; + additional_vim_regex_highlighting = true; + }; + indent.enable = true; + }; + }; + which-key = { + enable = true; + }; + }; }