about summary refs log tree commit diff
diff options
context:
space:
mode:
authorVincent Ambo <tazjin@google.com>2020-03-09T00·08+0000
committerVincent Ambo <tazjin@google.com>2020-03-09T00·08+0000
commit067acdbcaeff5d8eddc957bc4a05717f5f76876b (patch)
tree24542b1e7455361ef94d34023aea9be491f3adcd
parent28ec16e6180d2f523dd8f3f9916b3e8e8e7c7102 (diff)
chore(tools/emacs): Configure all-tags list in notmuch-hello r/595
I've been setting these options manually in my sessions for some
reason. Let's make it official!
-rw-r--r--tools/emacs/config/init.el4
1 files changed, 3 insertions, 1 deletions
diff --git a/tools/emacs/config/init.el b/tools/emacs/config/init.el
index d705274e93..1d25fb4414 100644
--- a/tools/emacs/config/init.el
+++ b/tools/emacs/config/init.el
@@ -77,7 +77,9 @@
               ("s-g m" . notmuch)
               ("s-g M" . counsel-notmuch)) ;; g m -> gmail
   :config
-  (setq notmuch-search-oldest-first nil))
+  (setq notmuch-search-oldest-first nil)
+  (setq notmuch-show-all-tags-list t)
+  (setq notmuch-hello-tag-list-make-query "tag:unread"))
 
 (use-package paredit :hook ((lisp-mode . paredit-mode)
                             (emacs-lisp-mode . paredit-mode)))