From 66997f71b9795957a37b5b7955891a63c448ca1c Mon Sep 17 00:00:00 2001 From: Correl Roush Date: Wed, 26 Jul 2017 16:10:42 -0400 Subject: [PATCH] [emacs] Add which-key mode --- .emacs.d/emacs.org | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/.emacs.d/emacs.org b/.emacs.d/emacs.org index 84ee04b..8494d68 100644 --- a/.emacs.d/emacs.org +++ b/.emacs.d/emacs.org @@ -53,6 +53,17 @@ Display major-mode names as icons in the mode line when possible. :ensure t :config (mode-icons-mode)) #+END_SRC +** Which-Key +Display key binding completions after a delay. +#+name: look-and-feel +#+BEGIN_SRC emacs-lisp + (use-package which-key + :ensure t + :diminish which-key-mode + :config + (which-key-setup-side-window-right-bottom) + (which-key-mode)) +#+END_SRC ** Helm #+name: packages #+BEGIN_SRC emacs-lisp