summaryrefslogtreecommitdiffhomepage
path: root/email.org
diff options
context:
space:
mode:
Diffstat (limited to 'email.org')
-rw-r--r--email.org9
1 files changed, 7 insertions, 2 deletions
diff --git a/email.org b/email.org
index 73e28da..a2f5bd6 100644
--- a/email.org
+++ b/email.org
@@ -353,8 +353,11 @@
#+end_src
*** package
#+begin_src emacs-lisp
+ (when (< emacs-major-version 28)
+ (jao-load-path "notmuch"))
+
(use-package notmuch
- :ensure t
+ ;; :ensure t
:init
(setq notmuch-draft-folder "trove/drafts"
notmuch-draft-quoted-tags '("part")
@@ -616,8 +619,10 @@
#+end_src
*** consult
#+begin_src emacs-lisp
+ (when (< emacs-major-version 28)
+ (jao-load-path "consult-notmuch"))
(use-package consult-notmuch
- :ensure t
+ ;; :ensure t
:init (setq consult-notmuch-authors-width 30)
:config
(add-to-list 'consult-config '(consult-notmuch :preview-key any))