snowflake/home/programs/editors/neovim/plugins/editor/treesitter.nix

24 lines
382 B
Nix
Raw Normal View History

2024-10-28 19:30:48 -04:00
{pkgs, ...}: {
programs.nixvim.plugins.treesitter = {
enable = true;
grammarPackages = with pkgs.vimPlugins.nvim-treesitter.builtGrammars; [
bash
json
lua
markdown
nix
regex
toml
xml
yaml
2024-11-01 07:21:24 -04:00
rust
go
gomod
2024-10-28 19:30:48 -04:00
];
2024-11-01 07:21:24 -04:00
settings = {
highlight.enable = true;
indent.enable = false;
};
2024-10-28 19:30:48 -04:00
};
}