nixos/pkgs/nixvim/treesitter.nix

20 lines
346 B
Nix
Raw Normal View History

2025-07-13 06:04:55 +08:00
{...}: {
plugins = {
treesitter = {
enable = true;
# folding = true;
nixvimInjections = true;
settings = {
highlight = {
enable = true;
additional_vim_regex_highlighting = true;
};
indent.enable = true;
};
};
which-key = {
enable = true;
};
};
2025-07-13 06:04:55 +08:00
}