1
Fork 0
dots/nvim/lua/plugins/treesitter.lua

16 lines
287 B
Lua
Raw Normal View History

2023-08-21 09:56:16 +00:00
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"
}