diff options
author | Vincent Ambo <tazjin@google.com> | 2019-12-23T15·05+0100 |
---|---|---|
committer | Vincent Ambo <tazjin@google.com> | 2019-12-23T15·05+0100 |
commit | ccd31b88982d1dd2126eb9eb0f03113135db7611 (patch) | |
tree | 5b8adcb9c06745126dfd99f8a62ccc55b1660a94 /tools | |
parent | 41eea96e63b9fdc9da9895093a0ae65013cf06d2 (diff) |
feat(emacs.d): Bind 's-g m' to notmuch UI r/295
Diffstat (limited to 'tools')
-rw-r--r-- | tools/emacs/config/init.el | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/tools/emacs/config/init.el b/tools/emacs/config/init.el index d2f8ebd9acd5..b3da4d6bda12 100644 --- a/tools/emacs/config/init.el +++ b/tools/emacs/config/init.el @@ -67,6 +67,9 @@ (use-package multiple-cursors) +(use-package notmuch + :bind (:map global-map ("s-g m" . notmuch))) ;; g m -> gmail + (use-package paredit :hook ((lisp-mode . paredit-mode) (emacs-lisp-mode . paredit-mode))) |