diff options
author | Vincent Ambo <tazjin@google.com> | 2020-01-22T17·26+0000 |
---|---|---|
committer | Vincent Ambo <tazjin@google.com> | 2020-01-22T17·26+0000 |
commit | 98cc5f9fac9c2739e08486548a4c678e8d48965b (patch) | |
tree | 9f0ddf6339386cb7a0752d83bfb01a4d80dedec8 /tools | |
parent | ec30e0edf156044e8dc14e9baf148a9b8068e13c (diff) |
feat(emacs.d): Add key binding for counsel-notmuch r/447
Diffstat (limited to 'tools')
-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 45f90c98e713..d705274e9397 100644 --- a/tools/emacs/config/init.el +++ b/tools/emacs/config/init.el @@ -73,7 +73,9 @@ (use-package multiple-cursors) (use-package notmuch - :bind (:map global-map ("s-g m" . notmuch)) ;; g m -> gmail + :bind (:map global-map + ("s-g m" . notmuch) + ("s-g M" . counsel-notmuch)) ;; g m -> gmail :config (setq notmuch-search-oldest-first nil)) |