;;; 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