Dotfiles/site-modules/core/files/vim/plugin/treesitter.lua

14 lines
408 B
Lua
Raw Normal View History

2022-06-12 19:25:17 +00:00
require'nvim-treesitter.configs'.setup {
playground = { enable = true },
indent = { enable = false },
2022-06-12 19:25:17 +00:00
rainbow = { enable = true },
highlight = {
-- `false` will disable the whole extension
enable = true,
additional_vim_regex_highlighting = true,
},
ensure_installed = {
"typescript", "javascript", "tsx", "php", "html", "go", "org", "clojure"
2022-06-12 19:25:17 +00:00
},
}