From 1543ac66ba6f829082b745e6a11a9aeb9e8faec7 Mon Sep 17 00:00:00 2001 From: Franck Cuny Date: Wed, 23 Mar 2022 09:55:58 -0700 Subject: rename a few more libraries --- emacs/custom/my-notmuch.el | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 emacs/custom/my-notmuch.el (limited to 'emacs/custom/my-notmuch.el') diff --git a/emacs/custom/my-notmuch.el b/emacs/custom/my-notmuch.el new file mode 100644 index 0000000..b009f9e --- /dev/null +++ b/emacs/custom/my-notmuch.el @@ -0,0 +1,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 -- cgit 1.4.1