osbm-nvim/plugins/treesitter.nix
2025-03-16 21:15:18 +03:00

20 lines
372 B
Nix

{
plugins.treesitter = {
# folding = true; # i dont like the way it starts neovim with everything folded
settings = {
ensure_installed = [
"python"
"astro"
"just"
"dockerfile"
"json"
"yaml"
"lua"
"nix"
"c"
"markdown"
];
highlight = {enable = true;};
};
};
}