25 lines
824 B
Lua
25 lines
824 B
Lua
-- =============================================================================
|
|
-- treesitter.lua — 语法高亮
|
|
-- =============================================================================
|
|
-- 【保留】你的完整 ensure_installed 列表。
|
|
-- 【新增】✅ fold 配置让 nvim-ufo 可以使用 treesitter 折叠。
|
|
|
|
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 },
|
|
-- ✅ 新增:启用 treesitter 折叠(nvim-ufo 依赖)
|
|
fold = { enable = true },
|
|
},
|
|
},
|
|
}
|