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/config.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/config.el')
-rw-r--r-- | users/glittershark/emacs.d/config.el | 17 |
1 files changed, 1 insertions, 16 deletions
diff --git a/users/glittershark/emacs.d/config.el b/users/glittershark/emacs.d/config.el index 1cfa586ef11a..afeb990e8875 100644 --- a/users/glittershark/emacs.d/config.el +++ b/users/glittershark/emacs.d/config.el @@ -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"))) ) |