From c6fadf477621fbc9ee3a91c040e14ca9fed48655 Mon Sep 17 00:00:00 2001 From: Henrik Lissner Date: Mon, 18 May 2020 14:10:24 -0400 Subject: [PATCH] Enable ol-notmuch if notmuch module is enabled Closes #3161 --- modules/email/notmuch/config.el | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/modules/email/notmuch/config.el b/modules/email/notmuch/config.el index 931f58b1d..dd6b56ff5 100644 --- a/modules/email/notmuch/config.el +++ b/modules/email/notmuch/config.el @@ -15,7 +15,12 @@ ;; ;;; Packages -(after! notmuch +(use-package! notmuch + :defer t + :init + (after! org + (add-to-list 'org-modules 'ol-notmuch)) + :config (set-company-backend! 'notmuch-message-mode '(notmuch-company :with company-ispell company-yasnippet))