Dotfiles/site-modules/core/files/vim/plugin/treesitter.lua
Ade Attwood 3070940cd1 feat(core): start on the clojure journey
Install all of the tools and config for clojure development. This adds
the first configz module that is not yet properly integrated and
automaticaly run with the `dotfiles` shell command.
2023-04-25 21:00:23 +01:00

12 lines
372 B
Lua

require'nvim-treesitter.configs'.setup {
indent = { enable = false },
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"
},
}