19 lines
312 B
Nix
19 lines
312 B
Nix
{
|
|
plugins = {
|
|
treesitter = {
|
|
enable = true;
|
|
nixGrammars = true;
|
|
settings = {
|
|
highlight.enable = true;
|
|
indent.enable = true;
|
|
};
|
|
};
|
|
|
|
treesitter-context = {
|
|
enable = true;
|
|
settings.max_lines = 2;
|
|
};
|
|
};
|
|
|
|
# rainbow-delimiters.enable = true;
|
|
}
|