14 lines
388 B
Lua
14 lines
388 B
Lua
return {
|
|
"nvim-treesitter/nvim-treesitter",
|
|
build = ":TSUpdate",
|
|
|
|
config = function()
|
|
local config = require("nvim-treesitter.configs")
|
|
|
|
config.setup({
|
|
ensure_installed = { "asm", "c", "javascript", "latex", "lua", "matlab", "meson", "sql", "toml", "typescript", "verilog", "vue" },
|
|
highlight = { enable = true },
|
|
indent = { enable = true }
|
|
})
|
|
end
|
|
}
|