From 4fabc361723ee056575c256ddc4549a71e48cccf Mon Sep 17 00:00:00 2001 From: Vincent Ambo Date: Fri, 18 May 2018 12:20:34 +0200 Subject: [PATCH] feat(settings): Always load notmuch --- init/settings.el | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/init/settings.el b/init/settings.el index 3f55774fa..d445765d4 100644 --- a/init/settings.el +++ b/init/settings.el @@ -1,4 +1,5 @@ (require 'uniquify) +(require 'notmuch) ;; Make ivy go! (ivy-mode 1) @@ -66,4 +67,7 @@ (setq epa-pinentry-mode 'loopback) (pinentry-start) +;; Close mail buffers after sending mail +(setq message-kill-buffer-on-exit t) + (provide 'settings)