about summary refs log tree commit diff
diff options
context:
space:
mode:
authorVincent Ambo <tazjin@gmail.com>2017-11-15T17·29+0100
committerVincent Ambo <tazjin@gmail.com>2017-11-15T17·29+0100
commit29d4413f16af4afe30e2fcc543e29762fcc04b42 (patch)
treebcb8f2228ed2356c05d781e3a9b953aae1fa7d10
parent4e1661604d78d1a72c6a5203d0015c82c8ba684c (diff)
feat: Install & globally enable which-key
-rw-r--r--init.el1
-rw-r--r--init/modes.el3
2 files changed, 4 insertions, 0 deletions
diff --git a/init.el b/init.el
index 2ddebe4758b8..275d445107d5 100644
--- a/init.el
+++ b/init.el
@@ -60,6 +60,7 @@
     undo-tree
     uuidgen
     yaml-mode
+    which-key
     ))
 
 (defun installable-packages (pkg-list)
diff --git a/init/modes.el b/init/modes.el
index a0ad034cda8c..795e75365c5a 100644
--- a/init/modes.el
+++ b/init/modes.el
@@ -55,4 +55,7 @@
 ;; Transparently open compressed files
 (auto-compression-mode t)
 
+;; Show available key chord completions
+(which-key-mode t)
+
 (provide 'modes)