10 lines
190 B
Nix
10 lines
190 B
Nix
{ ... }: {
|
|
programs.nixvim.plugins.treesitter = {
|
|
enable = true;
|
|
settings = {
|
|
indent.enable = true;
|
|
highlight.enable = true;
|
|
};
|
|
nixvimInjections = true;
|
|
};
|
|
}
|