]> git.ekhem.eu.org Git - guix.git/commitdiff
[emacs] Install `notmuch` extensions.
authorJakub Czajka <jakub@ekhem.eu.org>
Fri, 2 Jun 2023 17:02:31 +0000 (19:02 +0200)
committerJakub Czajka <jczajka@google.com>
Sun, 24 Dec 2023 18:53:24 +0000 (19:53 +0100)
emacs/.config/emacs/conf/conf-email.el

index 0c61bc51501c2d8912c835d20ef2aaea11b64f6a..ff410b0e4c5051372cbaa330217ca2d2f51af780 100644 (file)
@@ -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
   (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)