diff options
-rw-r--r-- | email.org | 9 |
1 files changed, 7 insertions, 2 deletions
@@ -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)) |