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
|
|
|
|
2018-08-31 02:50:47 +02:00
|
|
|
;; `dumb-jump' uses the `helm-build-sync-source' macro, but this requires helm
|
2019-05-12 01:45:48 -04:00
|
|
|
;; 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)
|
|
|
|
(package! ivy-xref))
|
|
|
|
(when (featurep! :completion helm)
|
|
|
|
(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)))
|