From: Jakub Czajka Date: Fri, 2 Jun 2023 17:02:31 +0000 (+0200) Subject: [emacs] Install `notmuch` extensions. X-Git-Url: https://git.ekhem.eu.org/?a=commitdiff_plain;h=23fe3da6c2a3406887293b1ef4df0e27d9986e0f;p=guix.git [emacs] Install `notmuch` extensions. --- 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)