17 lines
334 B
Nix
Executable file
17 lines
334 B
Nix
Executable file
{pkgs, ...}: {
|
|
programs.nixvim.plugins.treesitter = {
|
|
enable = true;
|
|
|
|
settings = {
|
|
auto_install = false;
|
|
# highlight.enable = true;
|
|
};
|
|
|
|
# grammarPackages = with pkgs.vimPlugins.nvim-treesitter.builtGrammars; [
|
|
# wgsl
|
|
# ];
|
|
};
|
|
|
|
programs.nixvim.plugins.treesitter-textobjects.enable = true;
|
|
}
|