-- ============================================================================= -- treesitter.lua — 语法高亮与折叠 -- ============================================================================= return { { "nvim-treesitter/nvim-treesitter", event = { "BufReadPre", "BufNewFile" }, build = ":TSUpdate", opts = { ensure_installed = { "lua", "bash", "rust", "c", "cpp", "cmake", "python", "java", "go", "json", "toml", "markdown", "regex", "vim", }, highlight = { enable = true }, indent = { enable = true }, fold = { enable = true }, -- nvim-ufo 依赖 }, }, }