summary refs log tree commit diff
path: root/emacs/custom/fcuny-notmuch.el
blob: 3334733b646b9cd2252dc0c9615577958697eed0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
;;; fcuny-notmuch.el --- Configures notmuch
;;; Commentary:
;;; Code:

(require 'use-package)

(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)
;;; fcuny-notmuch.el ends here