refactor(gs/emacs): Break email config into its own file

Change-Id: I90327cbd2d8a735cdedae7f7b5412959cf710aef
Reviewed-on: https://cl.tvl.fyi/c/depot/+/938
Tested-by: BuildkiteCI
Reviewed-by: glittershark <grfn@gws.fyi>
This commit is contained in:
Griffin Smith 2020-07-06 11:08:03 -04:00 committed by glittershark
parent 1915fbccd6
commit 8bcdff263c
2 changed files with 17 additions and 16 deletions

View file

@ -28,6 +28,7 @@
(load! "org-gcal")
(load! "grid")
(load! "nix")
(load! "email")
(require 's)
(require 'tvl)
@ -1201,22 +1202,6 @@
(use-package! direnv
:config (direnv-mode))
(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))
(after! erc
;; (setq erc-autojoin-channels-alist '(("freenode.net" "#nixos" "#haskell" "##tvl")))
)

View file

@ -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))