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
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 "fbbe6b0c3010bea8a6eaac2297080137319160e2")
|
|
(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 "d02d1347ffdf138cffd380cbeac62ac8732036ef")
|
|
|
|
(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 "1b79ff64c72485cb078db9ab7ee3256b11a99f4b")
|
|
(package! define-word :pin "3af6825c5f3bf4f6176a3f5b2e499616c65e2fe0")
|
|
(package! powerthesaurus :pin "93036d3b111925ebc34f747ff846cb0b8669b92e")
|
|
(when (featurep! +offline)
|
|
(package! wordnut :pin "feac531404041855312c1a046bde7ea18c674915")
|
|
(package! synosaurus :pin "14d34fc92a77c3a916b4d58400424c44ae99cd81"))))
|