SavchenkoValeriy/emacs-powerthesaurus@810a25056c -> SavchenkoValeriy/emacs-powerthesaurus@88bc5229cb Silex/docker.el@fbd896e313 -> Silex/docker.el@44f0bbec9b editorconfig/editorconfig-emacs@1d4acc3ec7 -> editorconfig/editorconfig-emacs@1f6f16c24f emacs-citar/citar@ee98b94f7f -> emacs-citar/citar@dd028c6a4d emacs-straight/rainbow-mode@949166cc01 -> emacs-straight/rainbow-mode@55a8c15782 emacsorphanage/quickrun@c680f5137c -> emacsorphanage/quickrun@314beae43c jacktasia/dumb-jump@dbb915441a -> jacktasia/dumb-jump@1dd583011f magit/forge@66b3993c98 -> magit/forge@36208c43bf magit/magit@a4a78d341a -> magit/magit@c1fb53d3de millejoh/emacs-ipython-notebook@e04e1e19c6 -> millejoh/emacs-ipython-notebook@7b9b14435c purcell/envrc@57d78f0138 -> purcell/envrc@7f36664fc6 rafalcieslak/emacs-company-terraform@2d11a21fee -> rafalcieslak/emacs-company-terraform@8d5a16d1bb rejeep/prodigy.el@168f5ace16 -> rejeep/prodigy.el@a3be00d3b9 tkf/emacs-request@c769cf33f2 -> tkf/emacs-request@38ed1d2e64 tmalsburg/helm-bibtex@db73156576 -> tmalsburg/helm-bibtex@ce8c17690d
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 "1dd583011f4025b1b8c75fd785691851b6c5dfa3")
|
|
(when (featurep! :completion ivy)
|
|
(package! ivy-xref :pin "a82e8e117d2dd62c28b6a3e3d6e4cfb11c0bda38"))
|
|
(when (featurep! :completion helm)
|
|
(package! helm-xref :pin "ea0e4ed8a9baf236e4085cbc7178241f109a53fa"))
|
|
|
|
;; For dictionary and online lookup
|
|
(package! request :pin "38ed1d2e64138eb16a9d8ed2987cff2e01b4a93b")
|
|
|
|
(when (featurep! +docsets)
|
|
(package! dash-docs :pin "29848b6b347ac520f7646c200ed2ec36cea3feda")
|
|
(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 "31a8c67405afa99d0e25e7c86a4ee7ef84a808fe")
|
|
(package! powerthesaurus :pin "88bc5229cba1604c8f74db0a1456d99259d538cc")
|
|
(when (featurep! +offline)
|
|
(package! wordnut :pin "feac531404041855312c1a046bde7ea18c674915")
|
|
(package! synosaurus :pin "14d34fc92a77c3a916b4d58400424c44ae99cd81"))))
|