Files
doomemacs/modules/feature/lookup/packages.el
Henrik Lissner 7630394210 feature/lookup: replace devdocs packages with devdocs-lookup
Improved search; now downloads index from devdocs.io and lets you
fuzzy-search its listing with ivy/helm.
2018-05-14 13:05:03 +02:00

18 lines
470 B
EmacsLisp

;; -*- no-byte-compile: t; -*-
;;; feature/lookup/packages.el
(package! dumb-jump)
(when (featurep! :completion ivy)
(package! ivy-xref))
(when (featurep! :completion helm)
(package! helm-xref))
(when (featurep! +docsets)
(when (featurep! :completion helm)
(package! helm-dash))
(when (featurep! :completion ivy)
(package! counsel-dash)))
(when (featurep! +devdocs)
(package! devdocs-lookup :recipe (:fetcher github :repo "skeeto/devdocs-lookup")))