summary refs log tree commit diff
path: root/config/init-keys.el
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--config/init-keys.el19
1 files changed, 19 insertions, 0 deletions
diff --git a/config/init-keys.el b/config/init-keys.el
new file mode 100644
index 0000000..a3686fe
--- /dev/null
+++ b/config/init-keys.el
@@ -0,0 +1,19 @@
+;;; init-keys.el --- Configure key bindings -*- lexical-binding: t -*-
+;; Author: Franck Cuny <franck@fcuny.net>
+
+;;; Commentary:
+
+;; Configure key bindings
+
+;;; Code:
+
+(use-package which-key
+  :demand t
+  :diminish
+  :ensure t
+  :config
+  (which-key-mode))
+
+(provide 'init-keys)
+
+;;; init-keys.el ends here