Init:start-nix

This commit is contained in:
dichgrem
2025-07-22 12:18:15 +08:00
parent 7ce7214a74
commit e57cdd246c
178 changed files with 22667 additions and 1 deletions

View File

@@ -0,0 +1,35 @@
_: {
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"
];
};
};
};
};
}