neovim-config/lua/plugins/treesitter.lua

12 lines
313 B
Lua

return {
"nvim-treesitter/nvim-treesitter",
build = ":TSUpdate",
config = function()
require("nvim-treesitter.configs").setup {
auto_install = true,
sync_install = false,
highlight = {enable = true},
indent = {enable = true}
}
end
}