diff --git a/modules/nixvim/plugins/treesitter.nix b/modules/nixvim/plugins/treesitter.nix index c10239f..cd9be42 100644 --- a/modules/nixvim/plugins/treesitter.nix +++ b/modules/nixvim/plugins/treesitter.nix @@ -1,9 +1,13 @@ { - plugins.treesitter = { - enable = true; - settings = { - indent.enable = true; + plugins = { + treesitter = { + enable = true; + settings = { + indent.enable = true; + }; + folding = true; }; - folding = true; + treesitter-context.enable = true; + ts-autotag.enable = true; }; }