15 lines
341 B
Nix
15 lines
341 B
Nix
{ inputs, pkgs, ... }: {
|
|
plugins = {
|
|
treesitter = {
|
|
enable = true;
|
|
settings = {
|
|
indent.enable = true;
|
|
};
|
|
folding = true;
|
|
grammarPackages = [ inputs.treesitter-grammars.packages.${pkgs.system}.nvim-grammar-bundle ];
|
|
};
|
|
treesitter-context.enable = true;
|
|
ts-autotag.enable = true;
|
|
};
|
|
}
|