2018-01-04 17:05:37 -05:00
|
|
|
;; -*- no-byte-compile: t; -*-
|
2019-04-21 19:59:44 -04:00
|
|
|
;;; tools/lookup/packages.el
|
2018-01-04 17:05:37 -05:00
|
|
|
|
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.
|
2018-06-05 14:08:29 +02:00
|
|
|
(when (featurep! :completion helm)
|
2020-01-25 03:49:42 -05:00
|
|
|
(package! helm))
|
2018-06-05 14:08:29 +02:00
|
|
|
|
|
|
|
;;
|
2020-08-19 15:25:47 -04:00
|
|
|
(package! dumb-jump :pin "0d74b2f2aa834b602e91d99e9cb23197a389f042")
|
2018-01-04 17:05:37 -05:00
|
|
|
(when (featurep! :completion ivy)
|
2020-04-29 23:36:05 -04:00
|
|
|
(package! ivy-xref :pin "3d4c35fe2b243d948d8fe02a1f0d76a249d63de9"))
|
2018-01-04 17:05:37 -05:00
|
|
|
(when (featurep! :completion helm)
|
2020-04-29 23:36:05 -04:00
|
|
|
(package! helm-xref :pin "6b4a8bd91f5eaf82f51bd31b03f6587387fe6983"))
|
2018-01-04 17:05:37 -05:00
|
|
|
|
2020-03-31 15:20:58 -04:00
|
|
|
;; For dictionary and online lookup
|
2020-07-21 02:36:57 -04:00
|
|
|
(package! request :pin "d02d1347ffdf138cffd380cbeac62ac8732036ef")
|
2020-03-31 15:20:58 -04:00
|
|
|
|
2018-01-04 17:05:37 -05:00
|
|
|
(when (featurep! +docsets)
|
2020-06-02 18:21:11 -04:00
|
|
|
(package! dash-docs :pin "dafc8fc9f1ddb2e4e39e0b8d066c42d5d7ce8d06")
|
2018-01-04 17:05:37 -05:00
|
|
|
(when (featurep! :completion helm)
|
2020-04-29 23:36:05 -04:00
|
|
|
(package! helm-dash :pin "7f853bd34da666f0e9a883011c80f451b06f6c59"))
|
2018-01-04 17:05:37 -05:00
|
|
|
(when (featurep! :completion ivy)
|
2020-04-29 23:36:05 -04:00
|
|
|
(package! counsel-dash :pin "370d5f6f14b5294d0eb717f7b2a6a8e93df1ed24")))
|
2019-12-20 00:43:36 -05:00
|
|
|
|
|
|
|
(when (featurep! +dictionary)
|
|
|
|
(if IS-MAC
|
2020-04-29 23:36:05 -04:00
|
|
|
(package! osx-dictionary :pin "1b79ff64c72485cb078db9ab7ee3256b11a99f4b")
|
|
|
|
(package! define-word :pin "08c71b1ff4fd07bf0c78d1fcf77efeaafc8f7443")
|
2020-07-21 02:36:57 -04:00
|
|
|
(package! powerthesaurus :pin "93036d3b111925ebc34f747ff846cb0b8669b92e")
|
2020-01-25 16:55:04 -05:00
|
|
|
(when (featurep! +offline)
|
2020-04-29 23:36:05 -04:00
|
|
|
(package! wordnut :pin "feac531404041855312c1a046bde7ea18c674915")
|
|
|
|
(package! synosaurus :pin "14d34fc92a77c3a916b4d58400424c44ae99cd81"))))
|