return { "nvim-treesitter/nvim-treesitter", build = ":TSUpdate", config = function () local ts = require("nvim-treesitter.configs") ts.setup({ ensure_installed = { "c", "lua", "vim", "vimdoc", "html", "css", "javascript" }, sync_install = false, highlight = { enable = true }, indent = { enable = true }, }) end }