blob: c997b180ff0d4a2a05f7a5d2ed9a863fc03de9d2 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
;;; my-notmuch.el --- Configures notmuch -*- lexical-binding: t -*-
;;; Commentary:
;;; Code:
(require 'notmuch)
(setq notmuch-show-logo nil)
(setq notmuch-search-oldest-first nil)
(setq notmuch-always-prompt-for-sender t)
(setq notmuch-show-relative-dates t)
(setq notmuch-archive-tags '("-inbox" "-unread"))
(add-hook 'notmuch-message-mode-hook 'flyspell-mode)
(provide 'my-notmuch)
;;; my-notmuch.el ends here
|