]> src.twobees.de Git - dotfiles.git/blob - stow/nvim/.config/nvim/after/plugin/treesitter.lua
../..
[dotfiles.git] / stow / nvim / .config / nvim / after / plugin / treesitter.lua
1 require'nvim-treesitter.configs'.setup {
2 --    ensure_installed = "all",
3     sync_install = false,
4     auto_install = true,
5
6     highlight = {
7         enable = true,
8         additional_vim_regex_highlighting = false,
9     },
10     indent = { enable = true, },
11 }