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
|
|
|
|
|
|
|
;;
|
2021-07-09 17:37:59 -04:00
|
|
|
(package! dumb-jump :pin "542e72d3feba986a12119f6def515ef1347cb4ca")
|
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-10-11 16:06:51 -04:00
|
|
|
(package! helm-xref :pin "23f1174cfca7667d95828dcd388c655a4a9c877d"))
|
2018-01-04 17:05:37 -05:00
|
|
|
|
2020-03-31 15:20:58 -04:00
|
|
|
;; For dictionary and online lookup
|
2021-05-22 22:43:56 -04:00
|
|
|
(package! request :pin "f3a5b4352e9f444ace2a332939abff504b573887")
|
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
|
2021-07-09 17:37:59 -04:00
|
|
|
(package! osx-dictionary :pin "1a4479d9f44ef1e6e5f7643c172c32f6fe6cce21")
|
2021-01-04 18:26:08 -05:00
|
|
|
(package! define-word :pin "6e4a427503aef096484f88332962c346cdd10847")
|
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"))))
|