From 1f3ddb638ccd5d714371f2bd794de25ca66fed64 Mon Sep 17 00:00:00 2001 From: Bozhidar Batsov Date: Thu, 10 Mar 2016 10:51:21 +0200 Subject: [PATCH] [Fix #977] Add the which-key package --- core/prelude-packages.el | 1 + core/prelude-ui.el | 4 ++++ 2 files changed, 5 insertions(+) diff --git a/core/prelude-packages.el b/core/prelude-packages.el index 145f1bd..e523a81 100644 --- a/core/prelude-packages.el +++ b/core/prelude-packages.el @@ -73,6 +73,7 @@ smartrep undo-tree volatile-highlights + which-key zenburn-theme zop-to-char) "A list of packages to ensure are installed at launch.") diff --git a/core/prelude-ui.el b/core/prelude-ui.el index 1721b68..076790b 100644 --- a/core/prelude-ui.el +++ b/core/prelude-ui.el @@ -84,5 +84,9 @@ (require 'beacon) (beacon-mode +1) +;; show available keybindings after you start typing +(require 'which-key) +(which-key-mode +1) + (provide 'prelude-ui) ;;; prelude-ui.el ends here