diff options
author | Matthew Lemon <matt@matthewlemon.com> | 2022-11-21 15:45:22 +0000 |
---|---|---|
committer | Matthew Lemon <matt@matthewlemon.com> | 2022-11-21 15:45:22 +0000 |
commit | 0a5df884960fe26bcce8007367cb0dedc8944b48 (patch) | |
tree | 4e9cd03062206be2c65f9ce506647d6546f93f97 /init.el | |
parent | 0dec46160bede3c68c9a0603ce3106656102f072 (diff) |
notmuch - first stab at config
Diffstat (limited to '')
-rw-r--r-- | init.el | 17 |
1 files changed, 17 insertions, 0 deletions
@@ -20,6 +20,9 @@ (setq use-package-always-ensure t) (require 'use-package) +;; notmuch is apparently already installed with notmuch from arch +(require 'notmuch) + ;; set custom file (setq custom-file (concat user-emacs-directory "custom.el")) (load custom-file 'noerror) @@ -166,6 +169,20 @@ (setq coding-system-for-read 'utf-8) (setq coding-system-for-write 'utf-8) +;; PACKAGES + +(use-package notmuch + :defer t + :config + (setq send-mail-function 'sendmail-send-it + sendmail-program "/usr/bin/msmtp" + message-kill-buffer-on-exit t + notmuch-fcc-dirs "fastmail/Sent +sent -unread -inbox" + notmuch-search-oldest-first t + mail-specify-envelope-from t + message-sendmail-envelope-from 'header + mail-envelope-from 'header)) + ;; calfw (use-package calfw-org :ensure t |