diff options
author | Franck Cuny <franck@fcuny.net> | 2021-09-25 07:17:36 -0700 |
---|---|---|
committer | Franck Cuny <franck@fcuny.net> | 2021-09-25 07:17:36 -0700 |
commit | 8538a654f2174825db9e2cc2b018eb9fe87bc4bb (patch) | |
tree | d4a9527f983885499a12bf7bd998c21c5b4e0dae | |
parent | emacs: some eshell tweaks (diff) | |
download | emacs.d-8538a654f2174825db9e2cc2b018eb9fe87bc4bb.tar.gz |
emacs: more tweaks for notmuch
-rw-r--r-- | emacs/custom/fcuny-notmuch.el | 6 |
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) |