15 lines
276 B
Nix
15 lines
276 B
Nix
{
|
|
plugins = {
|
|
treesitter = {
|
|
enable = true;
|
|
folding = false;
|
|
nixGrammars = true;
|
|
nixvimInjections = true;
|
|
settings = import ./settings.nix;
|
|
};
|
|
|
|
ts-autotag.enable = true;
|
|
treesitter-textobjects = import ./textobjects.nix;
|
|
};
|
|
}
|