mirror of
https://github.com/doomemacs/doomemacs.git
synced 2025-12-25 11:21:06 -08:00
+ Adds Dash docset integration (with helm or ivy support) + Adds devdocs.io integration + Three new settings: :lookup, :devdocs and :docset
17 lines
407 B
EmacsLisp
17 lines
407 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))
|