summary refs log tree commit diff
path: root/emacs/custom
diff options
context:
space:
mode:
Diffstat (limited to 'emacs/custom')
-rw-r--r--emacs/custom/fcuny-notmuch.el6
1 files changed, 5 insertions, 1 deletions
diff --git a/emacs/custom/fcuny-notmuch.el b/emacs/custom/fcuny-notmuch.el
index 3e030ed..43a7fd7 100644
--- a/emacs/custom/fcuny-notmuch.el
+++ b/emacs/custom/fcuny-notmuch.el
@@ -1,8 +1,12 @@
 (use-package notmuch
   :ensure t
   :if (executable-find "notmuch")
+  :hook
+  (notmuch-message-mode . flyspell-mode)
   :custom
   (notmuch-show-logo nil)
-  (notmuch-search-oldest-first nil))
+  (notmuch-search-oldest-first nil)
+  (notmuch-always-prompt-for-sender t)
+  (notmuch-show-relative-dates t))
 
 (provide 'fcuny-notmuch)