update treesitter

This commit is contained in:
xfy 2026-06-03 10:16:52 +08:00
parent 169492b9eb
commit 58f777ab48
2 changed files with 8 additions and 1 deletions

View File

@ -132,7 +132,6 @@ vim.lsp.enable({
"lua_ls", -- Lua 语言支持 "lua_ls", -- Lua 语言支持
"taplo", -- TOML 支持 "taplo", -- TOML 支持
"svelte", -- Svelte 框架支持 "svelte", -- Svelte 框架支持
"dartls", -- Dart/Flutter 支持
"kotlin_lsp", -- Kotlin 支持 "kotlin_lsp", -- Kotlin 支持
}) })

View File

@ -33,6 +33,7 @@ local ensure_installed = {
"html", "html",
"css", "css",
"yaml", "yaml",
"kotlin",
-- 后端 -- 后端
"c", "c",
"rust", "rust",
@ -44,6 +45,13 @@ local ensure_installed = {
-- 基础设施 -- 基础设施
"dockerfile", "dockerfile",
"make", "make",
"markdown",
"markdown_inline",
"git_config",
"git_rebase",
"gitattributes",
"gitcommit",
"gitginore",
} }
-- --------------------------------------------------------------------------- -- ---------------------------------------------------------------------------