summaryrefslogblamecommitdiff
path: root/emacs/custom/my-notmuch.el
blob: b009f9ecd7e5801a72c01ba24de6d40504db250e (plain) (tree)
1
2
3
4
5
6
7
8
9
                                        




                      

                    
                                 

                                        

                         

                                      

                                               
 

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