20 lines
349 B
Lua
20 lines
349 B
Lua
require("nvim-treesitter.configs").setup {
|
|
ensure_installed = {
|
|
"lua",
|
|
"typescript",
|
|
"tsx",
|
|
"json",
|
|
"javascript"
|
|
},
|
|
highlight = {
|
|
enable = true,
|
|
use_languagetree = true
|
|
},
|
|
matchup = {
|
|
enable = true
|
|
},
|
|
context_commentstring = {
|
|
enable = true
|
|
}
|
|
}
|