17 lines
237 B
Nix
17 lines
237 B
Nix
{
|
|
programs.nixvim = {
|
|
plugins.treesitter = {
|
|
enable = true;
|
|
folding = {
|
|
enable = true;
|
|
};
|
|
indent = {
|
|
enable = true;
|
|
};
|
|
highlight = {
|
|
enable = true;
|
|
};
|
|
};
|
|
};
|
|
}
|