added nvim treesitter

This commit is contained in:
willifan 2024-10-13 17:01:54 +02:00
parent ede1e5f9de
commit f793853c27
2 changed files with 14 additions and 0 deletions

View file

@ -13,6 +13,7 @@
./navic.nix ./navic.nix
./neotree.nix ./neotree.nix
./toggleterm.nix ./toggleterm.nix
./treesitter.nix
./yazi.nix ./yazi.nix
]; ];

View file

@ -0,0 +1,13 @@
{ ... }:
{
programs.nixvim.plugins = {
treesitter = {
enable = true;
settings = {
indent.enable = true;
highlight.enable = true;
};
};
};
}