summary refs log tree commit diff
path: root/emacs/custom
diff options
context:
space:
mode:
authorFranck Cuny <franck@fcuny.net>2021-09-25 07:17:36 -0700
committerFranck Cuny <franck@fcuny.net>2021-09-25 07:17:36 -0700
commit8538a654f2174825db9e2cc2b018eb9fe87bc4bb (patch)
treed4a9527f983885499a12bf7bd998c21c5b4e0dae /emacs/custom
parentemacs: some eshell tweaks (diff)
downloademacs.d-8538a654f2174825db9e2cc2b018eb9fe87bc4bb.tar.gz
emacs: more tweaks for notmuch
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)