gagbo/consult-lsp@c882749 -> gagbo/consult-lsp@e8a50f2 compatibility fix with new versions of consult
13 lines
623 B
EmacsLisp
13 lines
623 B
EmacsLisp
;; -*- no-byte-compile: t; -*-
|
|
;;; tools/lsp/packages.el
|
|
|
|
(if (featurep! +eglot)
|
|
(package! eglot :pin "5cc8df63d86a6c43134dd6e4e3ae26cfae14e66a")
|
|
(package! lsp-mode :pin "9aa22de1b2424a44c8c4a3f9e03b3f9a39636a77")
|
|
(package! lsp-ui :pin "9953a4857227ad83fb18bc295c8c12b1e4d29007")
|
|
(when (featurep! :completion ivy)
|
|
(package! lsp-ivy :pin "bccd86028e669f5a1cad78364775fe7a0741ff93"))
|
|
(when (featurep! :completion helm)
|
|
(package! helm-lsp :pin "c2c6974dadfac459b1a69a1217441283874cea92"))
|
|
(when (featurep! :completion vertico)
|
|
(package! consult-lsp :pin "e8a50f2c94f40c86934ca2eaff007f9c00586272")))
|