nixos-config/home-manager/stvnliu/nixvim/treesitter.nix
Zhongheng Liu ef09316160
feat(nixvim): tagbar wrapping and lsp
diag: changed to trouble from lsp-lines
tagbar: added to see outline of programs
wrapping: added
2025-01-14 23:25:03 +02:00

13 lines
372 B
Nix

{ pkgs, ... }: {
plugins = {
treesitter = {
enable = true;
nixGrammars = true;
nixvimInjections = true; # enables language injection in nixvim
settings.indent.enable = true;
grammarPackages = pkgs.vimPlugins.nvim-treesitter.passthru.allGrammars;
};
treesitter-context.enable = true;
rainbow-delimiters.enable = true;
};
}