diff --git a/lua/plugins/lsp.lua b/lua/plugins/lsp.lua index 83668e4..7e95f46 100644 --- a/lua/plugins/lsp.lua +++ b/lua/plugins/lsp.lua @@ -132,7 +132,6 @@ vim.lsp.enable({ "lua_ls", -- Lua 语言支持 "taplo", -- TOML 支持 "svelte", -- Svelte 框架支持 - "dartls", -- Dart/Flutter 支持 "kotlin_lsp", -- Kotlin 支持 }) diff --git a/lua/plugins/treesitter.lua b/lua/plugins/treesitter.lua index 6091fb0..ca87d82 100644 --- a/lua/plugins/treesitter.lua +++ b/lua/plugins/treesitter.lua @@ -33,6 +33,7 @@ local ensure_installed = { "html", "css", "yaml", + "kotlin", -- 后端 "c", "rust", @@ -44,6 +45,13 @@ local ensure_installed = { -- 基础设施 "dockerfile", "make", + "markdown", + "markdown_inline", + "git_config", + "git_rebase", + "gitattributes", + "gitcommit", + "gitginore", } -- ---------------------------------------------------------------------------