summary refs log tree commit diff
path: root/emacs/custom
diff options
context:
space:
mode:
authorFranck Cuny <franck@fcuny.net>2022-03-22 06:39:50 -0700
committerFranck Cuny <franck@fcuny.net>2022-03-22 06:39:50 -0700
commitb12f261f0f2782610a29c663e9f67de94d358a46 (patch)
treed17e5906f009231c7900287f6ef5907a25a55eb1 /emacs/custom
parentconf: make it work with flymake (diff)
downloademacs.d-b12f261f0f2782610a29c663e9f67de94d358a46.tar.gz
notmuch: make flymake happy
Diffstat (limited to 'emacs/custom')
-rw-r--r--emacs/custom/fcuny-notmuch.el7
1 files changed, 7 insertions, 0 deletions
diff --git a/emacs/custom/fcuny-notmuch.el b/emacs/custom/fcuny-notmuch.el
index b3a81f2..3334733 100644
--- a/emacs/custom/fcuny-notmuch.el
+++ b/emacs/custom/fcuny-notmuch.el
@@ -1,3 +1,9 @@
+;;; fcuny-notmuch.el --- Configures notmuch
+;;; Commentary:
+;;; Code:
+
+(require 'use-package)
+
 (use-package notmuch
   :ensure t
   :if (executable-find "notmuch")
@@ -11,3 +17,4 @@
   (notmuch-archive-tags '("-inbox" "-unread")))
 
 (provide 'fcuny-notmuch)
+;;; fcuny-notmuch.el ends here