nix-config/modules/default/common/nixvim/treesitter.nix
2024-12-27 15:08:02 +01:00

13 lines
187 B
Nix

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