From 584aecf266fb7e389409494d7c3c148c447fb9bc Mon Sep 17 00:00:00 2001 From: justsisyphus Date: Fri, 16 Jan 2026 10:33:44 +0900 Subject: [PATCH] refactor(config): disable unused OpenCode built-in LSP tools LspHover, LspCodeActions, LspCodeActionResolve are disabled globally as they are not needed when using oh-my-opencode's curated LSP tools. Ultraworked with [Sisyphus](https://github.com/code-yeongyu/oh-my-opencode) Co-authored-by: Sisyphus --- src/plugin-handlers/config-handler.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/plugin-handlers/config-handler.ts b/src/plugin-handlers/config-handler.ts index 55c4f24e..a61a98cd 100644 --- a/src/plugin-handlers/config-handler.ts +++ b/src/plugin-handlers/config-handler.ts @@ -284,6 +284,9 @@ export function createConfigHandler(deps: ConfigHandlerDeps) { config.tools = { ...(config.tools as Record), "grep_app_*": false, + LspHover: false, + LspCodeActions: false, + LspCodeActionResolve: false, }; if (agentResult.librarian) {