osbm-nvim/config/plugins/treesitter.nix
2025-06-14 01:45:40 +03:00

21 lines
396 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"
# TODO: add mdx
];
highlight = {enable = true;};
};
};
}