nix-darwin/modules/aspects/_editor/nvf/lsp/treesitter.nix

20 lines
305 B
Nix
Executable file

{pkgs, ...}: {
# treesitter
enable = true;
addDefaultGrammars = true;
grammars = with pkgs.vimPlugins.nvim-treesitter.builtGrammars; [
nix
lua
markdown
html
python
yaml
toml
just
];
fold = true;
highlight = {
enable = true;
};
indent.enable = true;
}