doomemacs/modules/tools/lookup/packages.el

26 lines
767 B
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)
2019-02-24 13:58:56 -05:00
(package! helm))
;;
(package! dumb-jump)
(when (featurep! :completion ivy)
(package! ivy-xref)
;; Need for Google/DuckDuckGo auto-completion on `+lookup/online'
(package! request))
(when (featurep! :completion helm)
(package! helm-google)
(package! helm-xref))
(when (featurep! +docsets)
(package! dash-docs)
(when (featurep! :completion helm)
(package! helm-dash))
(when (featurep! :completion ivy)
(package! counsel-dash)))