2019-02-21 16:08:27 -05:00
|
|
|
;; -*- no-byte-compile: t; -*-
|
|
|
|
;;; tools/lsp/packages.el
|
|
|
|
|
2020-05-01 11:01:11 +02:00
|
|
|
(if (featurep! +eglot)
|
2021-07-09 17:37:59 -04:00
|
|
|
(package! eglot :pin "5cc8df63d86a6c43134dd6e4e3ae26cfae14e66a")
|
|
|
|
(package! lsp-mode :pin "9aa22de1b2424a44c8c4a3f9e03b3f9a39636a77")
|
|
|
|
(package! lsp-ui :pin "9953a4857227ad83fb18bc295c8c12b1e4d29007")
|
2020-05-28 11:12:35 +02:00
|
|
|
(when (featurep! :completion ivy)
|
2021-05-22 22:43:56 -04:00
|
|
|
(package! lsp-ivy :pin "bccd86028e669f5a1cad78364775fe7a0741ff93"))
|
2020-05-28 11:12:35 +02:00
|
|
|
(when (featurep! :completion helm)
|
2021-04-29 21:40:43 +03:00
|
|
|
(package! helm-lsp :pin "c2c6974dadfac459b1a69a1217441283874cea92"))
|
|
|
|
(when (featurep! :completion selectrum)
|
|
|
|
(package! consult-lsp :pin "ed3cfd2e67fc5117819c0c739814780bb4c2d716")))
|