From 3fc06c105e4858862398e225a679bd96ade51276 Mon Sep 17 00:00:00 2001 From: Wojciech Kozlowski Date: Sat, 7 Jul 2018 17:32:34 +0100 Subject: [PATCH] Add which-key --- modules/emacs.el | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/modules/emacs.el b/modules/emacs.el index 457bd88..84bb9a0 100644 --- a/modules/emacs.el +++ b/modules/emacs.el @@ -24,6 +24,7 @@ help-mode+ ibuffer-vc rainbow-mode + which-key use-package) ) @@ -50,6 +51,13 @@ (use-package help-mode+) + (use-package which-key + :init + (setq which-key-separator " ") + (setq which-key-prefix-prefix "+") + :config + (which-key-mode 1)) + ;; -------------------------------------------------------------------------- ;; Configure `ibuffer'. ;; --------------------------------------------------------------------------