nixos/pkgs/nixvim/treesitter.nix

19 lines
346 B
Nix

{...}: {
plugins = {
treesitter = {
enable = true;
# folding = true;
nixvimInjections = true;
settings = {
highlight = {
enable = true;
additional_vim_regex_highlighting = true;
};
indent.enable = true;
};
};
which-key = {
enable = true;
};
};
}