blob: a3686feb2e0e34e81e82509c97dbe3ebeb6d4467 (
plain) (
tree)
|
|
;;; 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
|