18 lines
313 B
Nix
18 lines
313 B
Nix
{pkgs, ...}: {
|
|
programs.nixvim.plugins.treesitter = {
|
|
enable = true;
|
|
settings = {
|
|
highlight.enable = true;
|
|
indent.enable = true;
|
|
};
|
|
grammarPackages = with pkgs.vimPlugins.nvim-treesitter.builtGrammars; [
|
|
bash
|
|
fish
|
|
json
|
|
nix
|
|
toml
|
|
yaml
|
|
];
|
|
};
|
|
}
|