about summary refs log tree commit diff
diff options
context:
space:
mode:
authorGriffin Smith <grfn@gws.fyi>2020-09-23T15·12-0400
committerglittershark <grfn@gws.fyi>2020-09-23T15·19+0000
commite43620659ed575bcff19d18d11c8545c8d504cce (patch)
treee92d31d7567570f97df0726388cf8ac77239ab06
parent2a135526c4725cf68ab94b9893cf974019ab2e50 (diff)
fix(gs/emacs): Set notmuch saved searches at the top-level r/1812
For some reason having these in a with-eval-after-load isn't working, so
let's try this out.

Change-Id: Ia419962626c7bd26776ed6fde977698998a18155
Reviewed-on: https://cl.tvl.fyi/c/depot/+/1998
Reviewed-by: glittershark <grfn@gws.fyi>
Tested-by: BuildkiteCI
-rw-r--r--users/glittershark/emacs.d/email.el12
1 files changed, 12 insertions, 0 deletions
diff --git a/users/glittershark/emacs.d/email.el b/users/glittershark/emacs.d/email.el
index 13ada57606..240fcfc538 100644
--- a/users/glittershark/emacs.d/email.el
+++ b/users/glittershark/emacs.d/email.el
@@ -14,3 +14,15 @@
         message-send-mail-function 'message-send-mail-with-sendmail)
 
   (add-hook! notmuch-message-mode-hook #'notmuch-company-setup))
+
+(setq notmuch-saved-searches
+        '((:name "inbox" :query "tag:inbox tag:important not tag:trash" :key "i")
+          (:name "flagged" :query "tag:flagged" :key "f")
+          (:name "sent" :query "tag:sent" :key "s")
+          (:name "drafts" :query "tag:draft" :key "d")
+
+          (:name "work" :query "tag:inbox and tag:important and path:work/**"
+                 :key "w")
+          (:name "personal" :query "tag:inbox and tag:important and path:personal/**"
+                 :key "p"))
+        message-send-mail-function 'message-send-mail-with-sendmail)