summary refs log tree commit diff
path: root/emacs/custom/fcuny-notmuch.el
blob: b3a81f2c178b9467be2b6221204d97c0df01b0b1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
(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)
  (notmuch-archive-tags '("-inbox" "-unread")))

(provide 'fcuny-notmuch)