This commit is contained in:
Andrea Ciceri 2021-10-28 12:53:35 +02:00
parent aa7650e975
commit 7d02c94366
No known key found for this signature in database
GPG key ID: A1FC89532D1C5654
13 changed files with 117 additions and 10 deletions

View file

@ -0,0 +1,23 @@
(use-package notmuch
:custom
(notmuch-archive-tags '("-unread"))
(notmuch-show-indent-content nil)
(notmuch-hello-sections
'(notmuch-hello-insert-header
notmuch-hello-insert-saved-searches
notmuch-hello-insert-search
notmuch-hello-insert-alltags
notmuch-hello-insert-recent-searches
notmuch-hello-insert-footer
))
(notmuch-tagging-keys
'(("a" notmuch-archive-tags "Archive")
("u" notmuch-show-
mark-read-tags "Mark read")
("m" ("+muted") "Mute")
("f" ("+flagged") "Flag")
("s" ("+spam" "-inbox") "Mark as spam")
("d" ("+deleted" "-inbox") "Delete")))
)
(provide 'config-emails)