add treesitter

This commit is contained in:
Roel de Cort 2024-04-13 14:48:47 +02:00
parent f70def6feb
commit a18ebd0d8b
2 changed files with 17 additions and 1 deletions

View file

@ -0,0 +1,11 @@
{ pkgs, ... }: {
plugins.treesitter = {
enable = true;
indent = true;
folding = false;
nixvimInjections = true;
grammarPackages = pkgs.vimPlugins.nvim-treesitter.allGrammars;
};
}