amazing-tree-keeper/dsh-easy-lsp1

dsh-easy-lsp

DSH 语言服务器(LSP)图形化管理插件,提供自持 LSP 引擎、一键安装器、主动诊断注入及配置实时生效功能。

AI 分析

核心用途是为 DSH 提供代码跳转、重命名、格式化等 LSP 语言服务。适合需要图形化管理代码开发辅助工具的用户。注意该插件与官方 dsh-tool-lsp 存在命名冲突。

包名
dsh-easy-lsp
版本
0.2.0
许可证
MIT
最近更新
2026年8月21日

安装

$npx -p @deepseek-ai/dsh dsh plugin --profile web add github:amazing-tree-keeper/dsh-easy-lsp

Configuration

Servers are stored in the lsp section of ~/.dsh/settings.yaml and managed in the UI (manual edits are hot-synced too):

lsp:
  servers:
    typescript:
      enabled: true
      command: typescript-language-server
      args: ['--stdio']
      extensionToLanguage: { '.ts': 'typescript', '.tsx': 'typescript' }
  diagnostics:
    autoRun: true
    inject: true
    stabilityRounds: 2