Files
nvim-config/lua/plugins/treesitter.lua
T

14 lines
283 B
Lua
Raw Normal View History

2025-01-16 00:19:31 -06:00
return {
"nvim-treesitter/nvim-treesitter",
build = ":TSUpdate",
config = function()
local config = require("nvim-treesitter.configs")
config.setup({
auto_install = true,
indent = { enabled = true },
highlight = { enabled = true }
})
end
}