neovim-config/lua/plugins/treesitter.lua
2025-02-25 12:38:50 +01:00

12 lines
279 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
}