Skip to content

Instantly share code, notes, and snippets.

@buzztaiki
Created August 22, 2025 14:18
Show Gist options
  • Select an option

  • Save buzztaiki/3702ef79f4f08ee526d562bede9bbe73 to your computer and use it in GitHub Desktop.

Select an option

Save buzztaiki/3702ef79f4f08ee526d562bede9bbe73 to your computer and use it in GitHub Desktop.
lsp-bridge を使う

lsp-bridge を使う

とりあえず設定してみただけ。独自食強すぎてちょっないなって思った。補完もインターフェースとかも全部独自。すごい。

すごいなって思ったら、https://github.com/emacs-eaf/emacs-application-framework の人でなんか納得した。

(use-package lsp-bridge
  :quelpa (lsp-bridge :fetcher github :repo "manateelazycat/lsp-bridge"
                      :files (:defaults "*.py" "python-lsp-bridge" "acm/*" "core" "langserver" "multiserver" "resources"))
  :custom
  (lsp-bridge-python-command "uv")
  (lsp-bridge-user-langserver-dir (expand-file-name "lsp-bridge/langserver" user-emacs-directory))
  (lsp-bridge-user-multiserver-dir (expand-file-name "lsp-bridge/multiserver" user-emacs-directory))
  )

uv を使っておけば他の依存を個別に入れる必要がない便利。

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment