doomemacs/modules/tools/lsp/packages.el
Henrik Lissner 29536a22f0 bump: :tools lsp
emacs-lsp/lsp-mode@c228bce435 -> emacs-lsp/lsp-mode@f49ea4e365
joaotavora/eglot@2c0f262c24 -> joaotavora/eglot@dade5a1487

- lsp-mode now properly installs kotlin-language-server from the correct
URL (#5984).

Fix: #5984
Ref: emacs-lsp/lsp-mode#3315
2022-01-12 16:48:22 +01:00

16 lines
763 B
EmacsLisp

;; -*- no-byte-compile: t; -*-
;;; tools/lsp/packages.el
(if (featurep! +eglot)
(progn
(package! eglot :pin "dade5a148712463a15b7ac65f779e25596a3eefc")
(when (featurep! :completion vertico)
(package! consult-eglot :pin "f93c571dc392a8b11d35541bffde30bd9f411d30")))
(package! lsp-mode :pin "f49ea4e36528a23ae988b136d1b1e9a5f8651f04")
(package! lsp-ui :pin "21ce926eedd41ef305c2d89412506ce59b1a7eac")
(when (featurep! :completion ivy)
(package! lsp-ivy :pin "3e87441a625d65ced5a208a0b0442d573596ffa3"))
(when (featurep! :completion helm)
(package! helm-lsp :pin "c2c6974dadfac459b1a69a1217441283874cea92"))
(when (featurep! :completion vertico)
(package! consult-lsp :pin "f4f195046b97be5ce0406e0723921b3393d9442e")))