11 lines
218 B
Nix
11 lines
218 B
Nix
{pkgs, ...}: {
|
|
programs.nixvim.plugins.treesitter = {
|
|
enable = true;
|
|
settings = {
|
|
highlight.enable = true;
|
|
indent.enable = true;
|
|
};
|
|
grammarPackages = pkgs.vimPlugins.nvim-treesitter.allGrammars;
|
|
};
|
|
}
|