init.lua/lua/plugins/treesitter.lua

15 lines
395 B
Lua
Raw Permalink Normal View History

2024-11-01 23:12:38 +01:00
return {
"nvim-treesitter/nvim-treesitter",
build = ":TSUpdate",
config = function()
local config = require("nvim-treesitter.configs")
config.setup({
ensure_installed = { "asm", "c", "css", "javascript", "latex", "lua", "matlab", "meson", "sql", "toml", "typescript", "verilog", "vue" },
2024-11-01 23:12:38 +01:00
highlight = { enable = true },
indent = { enable = true }
})
end
}