17 lines
287 B
Lua
17 lines
287 B
Lua
require 'nvim-treesitter.configs'.setup {
|
|
ensure_installed = {
|
|
"python",
|
|
"lua",
|
|
"vim",
|
|
"vimdoc",
|
|
"query",
|
|
"elixir",
|
|
"heex",
|
|
"javascript",
|
|
"html",
|
|
"go"
|
|
},
|
|
sync_install = false,
|
|
highlight = { enable = true },
|
|
indent = { enable = true },
|
|
}
|