summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorAlan Pearce2015-12-01 10:26:25 +0100
committerAlan Pearce2015-12-01 10:26:25 +0100
commite3e404e78b5692857410feaf6479ab4a6407bd54 (patch)
treec3652e85977238deaeccc074b4d2a805bd455719
parent2384e5742f8cd0935c41c32560dbabd5b39e0462 (diff)
downloadnixfiles-e3e404e78b5692857410feaf6479ab4a6407bd54.tar.lz
nixfiles-e3e404e78b5692857410feaf6479ab4a6407bd54.tar.zst
nixfiles-e3e404e78b5692857410feaf6479ab4a6407bd54.zip
Emacs: Setup which-key properly
-rw-r--r--tag-emacs/emacs.d/init.org3
1 files changed, 2 insertions, 1 deletions
diff --git a/tag-emacs/emacs.d/init.org b/tag-emacs/emacs.d/init.org
index 58088074..1c84c79d 100644
--- a/tag-emacs/emacs.d/init.org
+++ b/tag-emacs/emacs.d/init.org
@@ -1021,8 +1021,9 @@ Popup keybindings following a prefix automatically.
 
 #+BEGIN_SRC emacs-lisp
   (use-package which-key
+    :diminish which-key-mode
     :config (progn
-              (which-key-mode)
+              (which-key-mode 1)
               (which-key-setup-side-window-right-bottom)))
 #+END_SRC