aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Tom Willemse2022-08-17 14:50:41 -0700
committerGravatar Tom Willemse2022-08-17 14:50:41 -0700
commit1f1e23ffd00f92b492fd03200b26bcec159fb259 (patch)
treea6bfc73e701ca4eac00f82099ccad5a507220c82
parentd8158ea7eeab765d5c097bcb55140d25efb2a8f9 (diff)
downloademacs-config-1f1e23ffd00f92b492fd03200b26bcec159fb259.tar.gz
emacs-config-1f1e23ffd00f92b492fd03200b26bcec159fb259.zip
[oni-notmuch] Give deleted emails a different face
-rw-r--r--oni-notmuch.el5
1 files changed, 4 insertions, 1 deletions
diff --git a/oni-notmuch.el b/oni-notmuch.el
index e6ee4f0..14e8443 100644
--- a/oni-notmuch.el
+++ b/oni-notmuch.el
@@ -4,7 +4,7 @@
;; Author: Tom Willemse <tom@ryuslash.org>
;; Keywords: local
-;; Version: 2022.0701.193231
+;; Version: 2022.0802.233530
;; Package-Requires: (notmuch ol-notmuch)
;; This program is free software; you can redistribute it and/or modify
@@ -37,6 +37,9 @@ in which to mark thread."
(notmuch-search-archive-thread reverse begin end)
(notmuch-search-tag (notmuch-tag-change-list '("deleted") reverse) begin end))
+(add-to-list 'notmuch-search-line-faces
+ '("deleted" . (:foreground "#3f4242")))
+
(define-key notmuch-search-mode-map (kbd "d") #'oni-notmuch-search-delete-thread)
(provide 'oni-notmuch)