18 lines
412 B
Nix
18 lines
412 B
Nix
{ pkgs, config, ... }: {
|
|
plugins = {
|
|
treesitter = {
|
|
enable = true;
|
|
settings = {
|
|
indent.enable = true;
|
|
highlight.enable = true;
|
|
};
|
|
folding = true;
|
|
nixGrammars = true;
|
|
grammarPackages = config.plugins.treesitter.package.passthru.allGrammars;
|
|
nixvimInjections = true;
|
|
};
|
|
treesitter-context.enable = true;
|
|
ts-autotag.enable = true;
|
|
};
|
|
}
|