diff options
author | Vincent Ambo <mail@tazj.in> | 2018-06-29T11·06+0200 |
---|---|---|
committer | Vincent Ambo <github@tazj.in> | 2019-02-10T20·43+0100 |
commit | 5b32cd74c60ba02fde8a4e8b15b3ce603358d86c (patch) | |
tree | 2f471618296ea668330f4ef77e1c7955ef958708 /init/mail-setup.el | |
parent | dea6ece741c130e70e710c53d6caba796c88ac83 (diff) |
feat(mail): Add counsel-notmuch support
Diffstat (limited to 'init/mail-setup.el')
-rw-r--r-- | init/mail-setup.el | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/init/mail-setup.el b/init/mail-setup.el index a277af7dbe97..1292a7e15fb0 100644 --- a/init/mail-setup.el +++ b/init/mail-setup.el @@ -1,6 +1,8 @@ (require 'notmuch) +(require 'counsel-notmuch) (global-set-key (kbd "C-c m") 'notmuch-hello) +(global-set-key (kbd "C-c C-m") 'counsel-notmuch) (global-set-key (kbd "C-c C-e n") 'notmuch-mua-new-mail) (setq notmuch-cache-dir (format "%s/.cache/notmuch" (getenv "HOME"))) |