abo-abo/define-word@08c71b1 -> abo-abo/define-word@3af6825 brotzeit/helm-xref@6b4a8bd) -> brotzeit/helm-xref@23f1174) charignon/github-review@fab440a -> charignon/github-review@e2123cc cjohansson/emacs-ssh-deploy@1bb2f82 -> cjohansson/emacs-ssh-deploy@cc91b56 editorconfig/editorconfig-emacs@9bc1343 -> editorconfig/editorconfig-emacs@a6c70da emacs-lsp/dap-mode@4b18543 -> emacs-lsp/dap-mode@400ec52 emacs-lsp/lsp-mode@65034e1 -> emacs-lsp/lsp-mode@fb4c35c emacsorphanage/quickrun@ce7383c -> emacsorphanage/quickrun@005d269 jacktasia/dumb-jump@0d74b2f -> jacktasia/dumb-jump@fbbe6b0 k1LoW/emacs-ansible@b5ef594 -> k1LoW/emacs-ansible@cf6b8f0 magit/forge@feee7e2 -> magit/forge@031e4f0 magit/magit@321214c -> magit/magit@2fb3bf7 millejoh/emacs-ipython-notebook@99a4718 -> millejoh/emacs-ipython-notebook@1bfb80c purcell/envrc@1dc5aad -> purcell/envrc@da8e306 realgud/realgud@332d136 -> realgud/realgud@ff66001 tumashu/posframe@7b92a54 -> tumashu/posframe@a99da9f
13 lines
594 B
EmacsLisp
13 lines
594 B
EmacsLisp
;; -*- no-byte-compile: t; -*-
|
|
;;; tools/lsp/packages.el
|
|
|
|
(if (featurep! +eglot)
|
|
(progn
|
|
(package! eglot :pin "61b71ea769fa14887465517f70832861f7052816")
|
|
(package! project :pin "da0333a697b18f0a863c1b1523d2fc7991b31174"))
|
|
(package! lsp-mode :pin "fb4c35c6978415c4cf52f85230b527d311989063")
|
|
(package! lsp-ui :pin "25552041f5af110c282fe8a2c714dec0f7a2320e")
|
|
(when (featurep! :completion ivy)
|
|
(package! lsp-ivy :pin "20cac6296e5038b7131ee6f34a96635f1d30fe3c"))
|
|
(when (featurep! :completion helm)
|
|
(package! helm-lsp :pin "fc09aa0903ee6abe4955e9a6062dcea667ebff5a")))
|