20 lines
315 B
Nix
20 lines
315 B
Nix
{ ... }:
|
|
{
|
|
programs.nixvim = {
|
|
plugins = {
|
|
treesitter = {
|
|
enable = true;
|
|
settings.ensure_installed = [
|
|
"nix"
|
|
"lua"
|
|
"python"
|
|
"latex"
|
|
"vim"
|
|
"vimdoc"
|
|
"markdown_inline"
|
|
"regex"
|
|
];
|
|
};
|
|
};
|
|
};
|
|
}
|