blob: b009f9ecd7e5801a72c01ba24de6d40504db250e (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
;;; my-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 'my-notmuch)
;;; my-notmuch.el ends here
|