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