summary refs log tree commit diff
path: root/config/init-keys.el
blob: a3686feb2e0e34e81e82509c97dbe3ebeb6d4467 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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