Files
nixos-config/modules/home/programs/nixvim/plugins/treesitter.nix

17 lines
237 B
Nix

{
programs.nixvim = {
plugins.treesitter = {
enable = true;
folding = {
enable = true;
};
indent = {
enable = true;
};
highlight = {
enable = true;
};
};
};
}