22 lines
657 B
Lua
22 lines
657 B
Lua
-- =============================================================================
|
|
-- 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 依赖
|
|
},
|
|
},
|
|
}
|