Files
nvim/lua/plugins/treesitter.lua
T
2024-04-07 12:28:24 +02:00

15 lines
379 B
Lua

return {
"nvim-treesitter/nvim-treesitter",
build = ":TSUpdate",
config = function()
local configs = require("nvim-treesitter.configs")
configs.setup({
ensure_installed = { "lua", "javascript", "html", "css", "svelte", "rust", "typescript", "python" },
auto_isntall = { enable = true },
highlight = { enable = true },
indent = { enable = true },
})
end,
}