lazy: split treesitter plugin

This commit is contained in:
David Senoner 2024-11-01 23:12:38 +01:00
parent 0cc17c0b26
commit a6e02d4c04

View file

@ -0,0 +1,14 @@
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
}