Files
DCGOS/home/tui/nixvim/plugins/treesitter.nix
2025-07-22 12:18:15 +08:00

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"
];
};
};
};
};
}