editorconfig/editorconfig-emacs@f830b86 -> editorconfig/editorconfig-emacs@048c553 emacs-helm/helm-pass@ed5798f -> emacs-helm/helm-pass@4ce46f1 emacs-lsp/dap-mode@5450af5 -> emacs-lsp/dap-mode@aa15b9c emacs-lsp/helm-lsp@fc09aa0 -> emacs-lsp/helm-lsp@e934fea emacs-lsp/lsp-mode@3ca25e6 -> emacs-lsp/lsp-mode@c3cbadc emacs-lsp/lsp-ui@732992a -> emacs-lsp/lsp-ui@0ac3e12 jacktasia/dumb-jump@ff9fc93 -> jacktasia/dumb-jump@f6a1165 joaotavora/eglot@398b81e -> joaotavora/eglot@a2d1fc9 magit/forge@8683b14 -> magit/forge@fa80a87 magit/magit@62dfe5a -> magit/magit@1c60edc millejoh/emacs-ipython-notebook@069e54c -> millejoh/emacs-ipython-notebook@4ff76e5 nicolaisingh/saveplace-pdf-view@b037091 -> nicolaisingh/saveplace-pdf-view@54ed966 spotify/dockerfile-mode@58b7380 -> spotify/dockerfile-mode@ed1d04c tkf/emacs-request@0183da8 -> tkf/emacs-request@accd430 tmalsburg/helm-bibtex@94807a3 -> tmalsburg/helm-bibtex@ca09076 zx2c4/password-store@f152064 -> zx2c4/password-store@918992c Fix #4677
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 "a2d1fc9c3c8a04072699713e8697cdeb92b2a4c7")
|
|
(package! project :pin "2e7afbe7d0c67c13f86c908ae13f2694308d6ab8"))
|
|
(package! lsp-mode :pin "c3cbadc095787f7cbf2922931a09afd5ac40ce5f")
|
|
(package! lsp-ui :pin "0ac3e12138a7eeaf764845d1e7e61b02769003ec")
|
|
(when (featurep! :completion ivy)
|
|
(package! lsp-ivy :pin "c70ee8b54357c56d1b972393ee53e57a2e545fbb"))
|
|
(when (featurep! :completion helm)
|
|
(package! helm-lsp :pin "e934feaab89389e5c3503134bdba8c8637e99e25")))
|