summary refs log tree commit diff
path: root/emacs/custom/fcuny-notmuch.el
blob: 43a7fd7841dcac0bb167981f11cdb9f7f48f7a00 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
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-always-prompt-for-sender t)
  (notmuch-show-relative-dates t))

(provide 'fcuny-notmuch)