1
Fork 0
dots/nvim/lua/plugins/treesitter.lua
2023-08-21 14:56:16 +05:00

15 lines
287 B
Lua

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