Files
dotfiles/dot-config/nvim/lua/plugins/treesitter.lua

18 lines
361 B
Lua
Raw Normal View History

2024-10-29 09:15:26 -05:00
return {
"nvim-treesitter/nvim-treesitter",
build = ":TSUpdate",
config = function()
local config = require("nvim-treesitter.configs")
config.setup({
ensure_installed = { "lua", "vim", "vimdoc" },
2024-10-29 09:15:26 -05:00
auto_install = true,
highlight = {
enable = true,
},
indent = {
enable = true,
},
})
end,
}