Add helm-org (bound but not installed).

This commit is contained in:
Uros Perisic 2019-08-31 19:41:28 +08:00
parent d1a299b9f5
commit 3996b01457
2 changed files with 12 additions and 0 deletions

View File

@ -904,3 +904,13 @@ compelling reason, so..."
(org-clock-load))
:config
(add-hook 'kill-emacs-hook #'org-clock-save)))
(use-package! helm-org
:if (featurep! :completion helm)
:defer t
:init
(progn
(add-to-list 'helm-completing-read-handlers-alist
'(org-capture . helm-org-completing-read-tags))
(add-to-list 'helm-completing-read-handlers-alist
'(org-set-tags . helm-org-completing-read-tags))))

View File

@ -36,6 +36,8 @@
(package! ob-rust))
;;; Modules
(when (featurep! :completion helm)
(package! helm-org))
(when (featurep! +dragndrop)
(package! org-download))
(when (featurep! +gnuplot)