;;; init-keys.el --- Configure key bindings -*- lexical-binding: t -*- ;; Author: Franck Cuny ;;; 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