summary refs log tree commit diff
path: root/emacs
diff options
context:
space:
mode:
authorFranck Cuny <franck@fcuny.net>2021-09-21 19:38:33 -0700
committerFranck Cuny <franck@fcuny.net>2021-09-21 19:38:33 -0700
commite0efe5a428900748d78d12a9dcbda5365fab9a1e (patch)
tree2b91981943a8ba738a92d71eb4b0c070d5e55936 /emacs
parentemacs: use a light background (diff)
downloademacs.d-e0efe5a428900748d78d12a9dcbda5365fab9a1e.tar.gz
emacs: initial configuration for notmuch
Diffstat (limited to 'emacs')
-rw-r--r--emacs/custom/fcuny-notmuch.el5
-rw-r--r--emacs/init.el1
2 files changed, 6 insertions, 0 deletions
diff --git a/emacs/custom/fcuny-notmuch.el b/emacs/custom/fcuny-notmuch.el
new file mode 100644
index 0000000..2bc1b20
--- /dev/null
+++ b/emacs/custom/fcuny-notmuch.el
@@ -0,0 +1,5 @@
+(use-package notmuch
+  :ensure t
+  :custom
+  (notmuch-show-logo nil)
+  (notmuch-search-oldest-first nil))
diff --git a/emacs/init.el b/emacs/init.el
index e103956..628ffec 100644
--- a/emacs/init.el
+++ b/emacs/init.el
@@ -40,3 +40,4 @@
 (require 'fcuny-eshell)
 (require 'fcuny-tramp)
 (require 'fcuny-twitter)
+(require 'fcuny-notmuch)