diff options
author | Vincent Ambo <tazjin@google.com> | 2020-03-09T00·08+0000 |
---|---|---|
committer | Vincent Ambo <tazjin@google.com> | 2020-03-09T00·08+0000 |
commit | 067acdbcaeff5d8eddc957bc4a05717f5f76876b (patch) | |
tree | 24542b1e7455361ef94d34023aea9be491f3adcd /tools/emacs | |
parent | 28ec16e6180d2f523dd8f3f9916b3e8e8e7c7102 (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!
Diffstat (limited to 'tools/emacs')
-rw-r--r-- | tools/emacs/config/init.el | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/tools/emacs/config/init.el b/tools/emacs/config/init.el index d705274e9397..1d25fb4414b2 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))) |