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