From ad1a7fd1adee254c8759823835f31376a1831723 Mon Sep 17 00:00:00 2001 From: Henrik Lissner Date: Sun, 29 Sep 2019 02:00:47 -0400 Subject: [PATCH] completion/helm: conditionally install helm-org --- modules/completion/helm/packages.el | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/modules/completion/helm/packages.el b/modules/completion/helm/packages.el index 10a3f8402..870759b66 100644 --- a/modules/completion/helm/packages.el +++ b/modules/completion/helm/packages.el @@ -6,10 +6,11 @@ (package! helm-c-yasnippet) (package! helm-company) (package! helm-describe-modes :recipe (:host github :repo "emacs-helm/helm-describe-modes")) -(package! helm-org) (package! helm-projectile) (package! swiper-helm) (when (featurep! +fuzzy) (package! helm-flx)) (when (and EMACS26+ (featurep! +childframe)) (package! posframe)) +(when (featurep! :lang org) + (package! helm-org))