DamienCassou/auth-password-store@468bba2 -> DamienCassou/auth-password-store@fa8b964 Silex/docker.el@ed0cdf0 -> Silex/docker.el@bc2dc09 cjohansson/emacs-ssh-deploy@cc91b56 -> cjohansson/emacs-ssh-deploy@fce4ea3 editorconfig/editorconfig-emacs@9da2dab -> editorconfig/editorconfig-emacs@e10fa22 emacs-lsp/dap-mode@49af1b8 -> emacs-lsp/dap-mode@4347846 emacs-lsp/lsp-ivy@4dcb635 -> emacs-lsp/lsp-ivy@bccd860 emacs-lsp/lsp-mode@3dc87f6 -> emacs-lsp/lsp-mode@aec8968 emacs-lsp/lsp-ui@efae00e -> emacs-lsp/lsp-ui@cb02972 emacsorphanage/quickrun@57db985 -> emacsorphanage/quickrun@35e91f4 jacktasia/dumb-jump@8bc1950 -> jacktasia/dumb-jump@8f70acb joaotavora/eglot@b06589b -> joaotavora/eglot@a5b7b7d magit/forge@f4c95dd -> magit/forge@37aa4e4 magit/magit@577f16d -> magit/magit@e378827 millejoh/emacs-ipython-notebook@142ff50 -> millejoh/emacs-ipython-notebook@09af858 purcell/envrc@110a221 -> purcell/envrc@8a9a142 realgud/realgud@34557f8 -> realgud/realgud@7a70b27 spotify/dockerfile-mode@3b13745 -> spotify/dockerfile-mode@ad06a41 tkf/emacs-request@accd430 -> tkf/emacs-request@f3a5b43 tmalsburg/helm-bibtex@ca09076 -> tmalsburg/helm-bibtex@9f6ea92 vedang/pdf-tools@35e12b0 -> vedang/pdf-tools@d262cf9 yoshiki/yaml-mode@fc5e1c5 -> yoshiki/yaml-mode@3a57058 zx2c4/password-store@918992c -> zx2c4/password-store@4e73cdc
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 "8f70acbe164553b225476fed55019ecddcf0bbd6")
|
|
(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 "4d4cc19fdd4ac8408bd5acc7694e7a7096b1e3b3")
|
|
(package! define-word :pin "6e4a427503aef096484f88332962c346cdd10847")
|
|
(package! powerthesaurus :pin "93036d3b111925ebc34f747ff846cb0b8669b92e")
|
|
(when (featurep! +offline)
|
|
(package! wordnut :pin "feac531404041855312c1a046bde7ea18c674915")
|
|
(package! synosaurus :pin "14d34fc92a77c3a916b4d58400424c44ae99cd81"))))
|