1
0
Fork 0
NixOS/common/home-manager/nixvim/treesitter.nix

10 lines
190 B
Nix

{ ... }: {
programs.nixvim.plugins.treesitter = {
enable = true;
settings = {
indent.enable = true;
highlight.enable = true;
};
nixvimInjections = true;
};
}