From 5b32cd74c60ba02fde8a4e8b15b3ce603358d86c Mon Sep 17 00:00:00 2001 From: Vincent Ambo Date: Fri, 29 Jun 2018 13:06:29 +0200 Subject: [PATCH] feat(mail): Add counsel-notmuch support --- init/mail-setup.el | 2 ++ 1 file changed, 2 insertions(+) diff --git a/init/mail-setup.el b/init/mail-setup.el index a277af7db..1292a7e15 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")))