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