dotfiles/private_dot_config/nvim/lua/plugins/settings/nvim-treesitter.lua
2024-04-05 02:25:01 +02:00

22 lines
392 B
Lua

return {
'nvim-treesitter/nvim-treesitter',
version = false,
build = function()
require('nvim-treesitter.install').update( {
with_sync = true,
} )()
end,
opts = {
highlight = {
enable = true,
},
indent = {
enable = true,
},
ensure_installed = {
"all"
},
sync_install = false,
auto_install = false,
}
}