mirror of
https://github.com/doomemacs/doomemacs
synced 2025-08-01 12:17:25 -05:00
emacs-straight/eglot@0b0f894713 -> emacs-straight/eglot@6a9e0c76b9 I incorrectly believed that #8380 was resolved upstream, but it hasn't, therefore this revert is necessary to avoid Eldoc errors on the latest commit of Eglot. Amend:50200762cd
Ref:13e92ceb3c
Ref: #8380
19 lines
890 B
EmacsLisp
19 lines
890 B
EmacsLisp
;; -*- no-byte-compile: t; -*-
|
|
;;; tools/lsp/packages.el
|
|
|
|
(if (modulep! +eglot)
|
|
(progn
|
|
(package! eglot :pin "6a9e0c76b9a7a4bf03a7fc91a02b826df507e3ce")
|
|
(when (modulep! :completion vertico)
|
|
(package! consult-eglot :pin "b71499f4b93bfea4e2005564c25c5bb0f9e73199"))
|
|
(when (modulep! :checkers syntax -flymake)
|
|
(package! flycheck-eglot :pin "18d0c9869585e6a9ea5c40678f266cf7f5bb2d2e")))
|
|
(package! lsp-mode :pin "c77ba141063916ae5f36f84cb23230e1783b4f09")
|
|
(package! lsp-ui :pin "a0dde8b52b4411cbac2eb053ef1515635ea0b7ed")
|
|
(when (modulep! :completion ivy)
|
|
(package! lsp-ivy :pin "3ee14a24bb0f3fd2aabec0773e43796690ef3a74"))
|
|
(when (modulep! :completion helm)
|
|
(package! helm-lsp :pin "54926afd10da52039f8858a99d426cae2aa4c07d"))
|
|
(when (modulep! :completion vertico)
|
|
(package! consult-lsp :pin "aef321d03907ca6926b0cf20ca85f672c4744000")))
|