Silex/docker.el@bc2dc09 -> Silex/docker.el@9bcefbe cjohansson/emacs-ssh-deploy@fce4ea3 -> cjohansson/emacs-ssh-deploy@7c5fe8a emacs-lsp/dap-mode@4347846 -> emacs-lsp/dap-mode@01d9297 emacs-lsp/lsp-mode@9aa22de -> emacs-lsp/lsp-mode@aec8968 emacs-lsp/lsp-ui@9953a48 -> emacs-lsp/lsp-ui@cb02972 emacs-pe/docker-tramp.el@8e2b671 -> emacs-pe/docker-tramp.el@aaee11c emacsorphanage/terraform-mode@a9fa5bd -> emacsorphanage/terraform-mode@e560caa jacktasia/dumb-jump@8f70acb -> jacktasia/dumb-jump@542e72d joaotavora/eglot@a5b7b7d -> joaotavora/eglot@5cc8df6 magit/forge@551e515 -> magit/forge@b4fd066 magit/magit@b68a760 -> magit/magit@9b7b25f tumashu/posframe@739d8fd -> tumashu/posframe@f97c4af xuchunyang/osx-dictionary.el@4d4cc19 -> xuchunyang/osx-dictionary.el@1a4479d zx2c4/password-store@4e73cdc -> zx2c4/password-store@3dd1469
34 lines
1.5 KiB
EmacsLisp
34 lines
1.5 KiB
EmacsLisp
;; -*- no-byte-compile: t; -*-
|
|
;;; tools/lookup/packages.el
|
|
|
|
;; HACK `dumb-jump' uses the `helm-build-sync-source' macro, but this requires
|
|
;; helm be loaded before `dumb-jump' is byte-compiled during installation.
|
|
;; To ensure this, we declare helm before dumb-jump.
|
|
(when (featurep! :completion helm)
|
|
(package! helm))
|
|
|
|
;;
|
|
(package! dumb-jump :pin "542e72d3feba986a12119f6def515ef1347cb4ca")
|
|
(when (featurep! :completion ivy)
|
|
(package! ivy-xref :pin "3d4c35fe2b243d948d8fe02a1f0d76a249d63de9"))
|
|
(when (featurep! :completion helm)
|
|
(package! helm-xref :pin "23f1174cfca7667d95828dcd388c655a4a9c877d"))
|
|
|
|
;; For dictionary and online lookup
|
|
(package! request :pin "f3a5b4352e9f444ace2a332939abff504b573887")
|
|
|
|
(when (featurep! +docsets)
|
|
(package! dash-docs :pin "dafc8fc9f1ddb2e4e39e0b8d066c42d5d7ce8d06")
|
|
(when (featurep! :completion helm)
|
|
(package! helm-dash :pin "7f853bd34da666f0e9a883011c80f451b06f6c59"))
|
|
(when (featurep! :completion ivy)
|
|
(package! counsel-dash :pin "370d5f6f14b5294d0eb717f7b2a6a8e93df1ed24")))
|
|
|
|
(when (featurep! +dictionary)
|
|
(if IS-MAC
|
|
(package! osx-dictionary :pin "1a4479d9f44ef1e6e5f7643c172c32f6fe6cce21")
|
|
(package! define-word :pin "6e4a427503aef096484f88332962c346cdd10847")
|
|
(package! powerthesaurus :pin "93036d3b111925ebc34f747ff846cb0b8669b92e")
|
|
(when (featurep! +offline)
|
|
(package! wordnut :pin "feac531404041855312c1a046bde7ea18c674915")
|
|
(package! synosaurus :pin "14d34fc92a77c3a916b4d58400424c44ae99cd81"))))
|