nvim/lua/plugins/treesitter.lua

13 lines
258 B
Lua

return {
{
"nvim-treesitter/nvim-treesitter",
build = ":TSUpdate",
dependencies = {},
opts = {
auto_install = true,
ensure_installed = { "lua" },
highlight = { enable = true },
indent = { enable = true }
}
}
}