commit 985227c70b60beb3a644ba12a8f0b296dc8239ea parent 7f60353d70f61f28340c695e161f797c86e5a8a7 Author: Cem Keylan <cem@ckyln.com> Date: Thu, 23 Jul 2020 12:33:06 +0300 mu4e: add alert and keybindings Diffstat:
M | init.org | | | 13 | ++++++++++++- |
1 file changed, 12 insertions(+), 1 deletion(-)
diff --git a/init.org b/init.org @@ -532,7 +532,18 @@ somewhat wonky. #+BEGIN_SRC emacs-lisp (use-package mu4e :if (executable-find "mu") - :config (load-file "~/.config/mu4e/mu4e-config.el")) + :bind (("C-c m c" . mu4e-compose-new) + ("C-c m u" . mu4e))) + + (use-package mu4e-alert + :ensure t + :after mu4e + :config + (mu4e-alert-enable-mode-line-display)) + + (use-package mu4e-config + :after mu4e + :load-path "~/.config/mu4e") #+END_SRC ** helm