osbm-nvim/plugins/treesitter.nix

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