Files
nvim/lua/plugins/treesitter.lua
2025-06-02 13:21:37 -04:00

15 lines
241 B
Lua

---@type LazySpec
return {
"nvim-treesitter/nvim-treesitter",
opts = {
ensure_installed = {
"lua",
"vim",
"javascript",
"go",
},
highlight = { enabled = true },
indent = { enabled = true },
},
}