2022-06-20 13:49:53 +00:00
|
|
|
require('nvim-treesitter.configs').setup({
|
2022-07-12 19:03:10 +00:00
|
|
|
highlight = { enable = true, additional_vim_regex_highlighting = false },
|
2022-06-20 13:49:53 +00:00
|
|
|
ensure_installed = {
|
|
|
|
"bash", "c", "cpp", "css", "dockerfile", "hcl", "html", "javascript",
|
2022-07-12 19:03:10 +00:00
|
|
|
"json", "latex", "lua", "markdown", "nix", "python", "rust", "svelte",
|
2022-06-22 19:50:50 +00:00
|
|
|
"toml", "tsx", "typescript", "vim", "vue", "yaml"
|
2022-06-20 13:49:53 +00:00
|
|
|
}
|
|
|
|
})
|