1
Fork 0
dots/nvim/lua/config/plugins/treesitter.lua
2025-04-10 00:09:50 +05:00

14 lines
239 B
Lua

return {
"nvim-treesitter/nvim-treesitter",
opts = {
ensure_installed = "all",
highlight = {
enable = true
},
indent = {
enable = true
}
},
main = "nvim-treesitter.configs",
build = ":TSUpdate",
}