diag: changed to trouble from lsp-lines tagbar: added to see outline of programs wrapping: added
13 lines
372 B
Nix
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;
|
|
};
|
|
}
|