19 lines
402 B
Nix
19 lines
402 B
Nix
{ inputs, pkgs, ... }: {
|
|
plugins = {
|
|
treesitter = {
|
|
enable = true;
|
|
settings = {
|
|
indent.enable = true;
|
|
highlight.enable = true;
|
|
};
|
|
folding = true;
|
|
nixGrammars = true;
|
|
grammarPackages = [
|
|
inputs.treesitter-grammars.packages.${pkgs.system}.default
|
|
];
|
|
};
|
|
treesitter-context.enable = true;
|
|
ts-autotag.enable = true;
|
|
};
|
|
}
|