10 lines
244 B
Lua
10 lines
244 B
Lua
require("nvim-treesitter.configs").setup {
|
|
ensure_installed = { "lua", "vim", "vimdoc", "tsx", "html", "css", "typescript", "javascript" },
|
|
|
|
highlight = {
|
|
enable = true,
|
|
use_languagetree = true,
|
|
},
|
|
indent = { enable = true },
|
|
}
|