diff options
author | Griffin Smith <grfn@gws.fyi> | 2020-07-06T15·08-0400 |
---|---|---|
committer | glittershark <grfn@gws.fyi> | 2020-07-06T15·09+0000 |
commit | 8bcdff263c31892161c5c40eb848f02b88c18624 (patch) | |
tree | 5e67cd77f625785c01b76662b27d9530f34ed673 /users/glittershark/emacs.d/email.el | |
parent | 1915fbccd69c102cde4239285ebcb4c9ca9f9322 (diff) |
refactor(gs/emacs): Break email config into its own file r/1220
Change-Id: I90327cbd2d8a735cdedae7f7b5412959cf710aef Reviewed-on: https://cl.tvl.fyi/c/depot/+/938 Tested-by: BuildkiteCI Reviewed-by: glittershark <grfn@gws.fyi>
Diffstat (limited to 'users/glittershark/emacs.d/email.el')
-rw-r--r-- | users/glittershark/emacs.d/email.el | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/users/glittershark/emacs.d/email.el b/users/glittershark/emacs.d/email.el new file mode 100644 index 000000000000..13ada5760667 --- /dev/null +++ b/users/glittershark/emacs.d/email.el @@ -0,0 +1,16 @@ +;;; ~/code/depot/users/glittershark/emacs.d/email.el -*- lexical-binding: t; -*- + +(after! notmuch + (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) + + (add-hook! notmuch-message-mode-hook #'notmuch-company-setup)) |