mirror of
https://github.com/Dichgrem/DCGOS.git
synced 2025-12-16 19:22:00 -05:00
36 lines
580 B
Nix
Executable File
36 lines
580 B
Nix
Executable File
_: {
|
|
programs.nixvim = {
|
|
plugins.treesitter = {
|
|
enable = true;
|
|
|
|
settings = {
|
|
ensureInstalled = [
|
|
"bash"
|
|
"c"
|
|
"diff"
|
|
"html"
|
|
"lua"
|
|
"luadoc"
|
|
"markdown"
|
|
"markdown_inline"
|
|
"query"
|
|
"vim"
|
|
"vimdoc"
|
|
];
|
|
|
|
highlight = {
|
|
additional_vim_regex_highlighting = true;
|
|
enable = true;
|
|
};
|
|
|
|
indent = {
|
|
enable = true;
|
|
disable = [
|
|
"ruby"
|
|
];
|
|
};
|
|
};
|
|
};
|
|
};
|
|
}
|