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)
|
2019-02-24 13:58:56 -05:00
|
|
|
(package! helm))
|
2018-06-05 14:08:29 +02:00
|
|
|
|
|
|
|
;;
|
2018-01-04 17:05:37 -05:00
|
|
|
(package! dumb-jump)
|
|
|
|
(when (featurep! :completion ivy)
|
2019-12-15 17:59:20 -05:00
|
|
|
(package! ivy-xref)
|
|
|
|
;; Need for Google/DuckDuckGo auto-completion on `+lookup/online'
|
|
|
|
(package! request))
|
2018-01-04 17:05:37 -05:00
|
|
|
(when (featurep! :completion helm)
|
2019-12-15 18:03:43 -05:00
|
|
|
(package! helm-google)
|
2018-01-04 17:05:37 -05:00
|
|
|
(package! helm-xref))
|
|
|
|
|
|
|
|
(when (featurep! +docsets)
|
2019-05-12 01:45:48 -04:00
|
|
|
(package! dash-docs)
|
2018-01-04 17:05:37 -05:00
|
|
|
(when (featurep! :completion helm)
|
|
|
|
(package! helm-dash))
|
|
|
|
(when (featurep! :completion ivy)
|
|
|
|
(package! counsel-dash)))
|