nixos-combined-flake/modules/nixvim/plugins/treesitter.nix

16 lines
291 B
Nix

{pkgs, ...}: {
plugins = {
treesitter = {
enable = true;
settings = {
indent.enable = true;
highlight.enable = true;
};
folding = true;
nixGrammars = false;
};
treesitter-context.enable = true;
ts-autotag.enable = true;
};
}