summaryrefslogtreecommitdiff
path: root/emacs/custom/fcuny-notmuch.el
diff options
context:
space:
mode:
authorFranck Cuny <franck@fcuny.net>2022-03-23 09:55:58 -0700
committerFranck Cuny <franck@fcuny.net>2022-03-23 09:55:58 -0700
commit1543ac66ba6f829082b745e6a11a9aeb9e8faec7 (patch)
treef06103de2e5d82426877595cd23d6201f2cdb000 /emacs/custom/fcuny-notmuch.el
parentrename fcuny-org to my-org (diff)
downloademacs.d-1543ac66ba6f829082b745e6a11a9aeb9e8faec7.tar.gz
rename a few more libraries
Diffstat (limited to 'emacs/custom/fcuny-notmuch.el')
-rw-r--r--emacs/custom/fcuny-notmuch.el20
1 files changed, 0 insertions, 20 deletions
diff --git a/emacs/custom/fcuny-notmuch.el b/emacs/custom/fcuny-notmuch.el
deleted file mode 100644
index 3334733..0000000
--- a/emacs/custom/fcuny-notmuch.el
+++ /dev/null
@@ -1,20 +0,0 @@
-;;; 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