20 lines
346 B
Lua
20 lines
346 B
Lua
local ts_config = require("nvim-treesitter.configs")
|
|
|
|
ts_config.setup {
|
|
ensure_installed = {
|
|
"javascript",
|
|
"html",
|
|
"css",
|
|
"bash",
|
|
"lua",
|
|
"json"
|
|
-- "cpp",
|
|
-- "rust",
|
|
-- "python"
|
|
},
|
|
highlight = {
|
|
enable = true,
|
|
use_languagetree = true
|
|
}
|
|
}
|