From 23fe3da6c2a3406887293b1ef4df0e27d9986e0f Mon Sep 17 00:00:00 2001 From: Jakub Czajka Date: Fri, 2 Jun 2023 19:02:31 +0200 Subject: [PATCH] [emacs] Install `notmuch` extensions. --- emacs/.config/emacs/conf/conf-email.el | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/emacs/.config/emacs/conf/conf-email.el b/emacs/.config/emacs/conf/conf-email.el index 0c61bc5..ff410b0 100644 --- a/emacs/.config/emacs/conf/conf-email.el +++ b/emacs/.config/emacs/conf/conf-email.el @@ -33,7 +33,6 @@ ("C-c m" . notmuch) :custom (notmuch-archive-tags '("-inbox" "+archive")) - (notmuch-transient-prefix "?") :init (exec-path-from-shell-copy-env "NOTMUCH_CONFIG") :config @@ -41,4 +40,16 @@ (define-advice notmuch-poll (:before ()) (password-store-get "dummy"))) +(use-package notmuch-transient + :ensure t) + +(use-package consult-notmuch + :ensure t) + +(use-package notmuch-addr + :ensure t) + +(use-package notmuch-maildir + :ensure t) + (provide 'conf-email) -- 2.39.5