From e43620659ed575bcff19d18d11c8545c8d504cce Mon Sep 17 00:00:00 2001 From: Griffin Smith Date: Wed, 23 Sep 2020 11:12:33 -0400 Subject: fix(gs/emacs): Set notmuch saved searches at the top-level 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 Tested-by: BuildkiteCI --- users/glittershark/emacs.d/email.el | 12 ++++++++++++ 1 file changed, 12 insertions(+) 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) -- cgit 1.4.1