summaryrefslogtreecommitdiffhomepage
path: root/email.org
diff options
context:
space:
mode:
authorjao <jao@gnu.org>2021-06-07 04:57:56 +0100
committerjao <jao@gnu.org>2021-06-07 04:57:56 +0100
commit41ad6a68037bad0765b735e97e7ae612afc0ccfc (patch)
treef313bec6af3ad547dc302729fbdc959a6eb00cdb /email.org
parentb2c2575a9b3335730000392502407706463c2e5c (diff)
downloadelibs-41ad6a68037bad0765b735e97e7ae612afc0ccfc.tar.gz
elibs-41ad6a68037bad0765b735e97e7ae612afc0ccfc.tar.bz2
emacs 27 doesn't like melpa notmuch
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))