Add treesitter to nixvim

This commit is contained in:
2025-07-06 20:43:27 +02:00
parent 1c0b832f72
commit 4131b9b116
+13
View File
@@ -100,6 +100,15 @@
}; };
}; };
plugins.treesitter = {
enable = true;
settings = {
auto_install = true;
highlight.enable = true;
indent.enable = true;
};
};
plugins.which-key = { plugins.which-key = {
enable = true; enable = true;
lazyLoad = { lazyLoad = {
@@ -108,6 +117,10 @@
}; };
}; };
extraPackages = with pkgs; [
gcc
];
extraPlugins = with pkgs.vimPlugins; [ extraPlugins = with pkgs.vimPlugins; [
vim-sleuth vim-sleuth
]; ];