doomemacs/modules/tools/lookup/packages.el

31 lines
1 KiB
EmacsLisp
Raw Normal View History

;; -*- no-byte-compile: t; -*-
;;; tools/lookup/packages.el
2019-12-15 23:51:59 -05:00
;; 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 "738d40ceb7")
(when (featurep! :completion ivy)
(package! ivy-xref :pin "3d4c35fe2b"))
(when (featurep! :completion helm)
(package! helm-xref :pin "6b4a8bd91f"))
(when (featurep! +docsets)
(package! dash-docs :pin "111fd9b970")
(when (featurep! :completion helm)
(package! helm-dash :pin "7f853bd34d"))
(when (featurep! :completion ivy)
(package! counsel-dash :pin "370d5f6f14")))
(when (featurep! +dictionary)
(if IS-MAC
(package! osx-dictionary :pin "1b79ff64c7")
(package! define-word :pin "d8c76d503b"))
;; Need for Google/DuckDuckGo auto-completion on `+lookup/online'
(package! powerthesaurus :pin "81a262ec0c")
(package! request :pin "4be823a89b"))