;;; init-keys.el --- Configure key bindings -*- lexical-binding: t -*- ;; Author: Franck Cuny ;;; Commentary: ;; Configure key bindings ;;; Code: (global-set-key (kbd "M-j") 'join-line) (use-package which-key :diminish :ensure t :hook (after-init . which-key-mode)) (provide 'init-keys) ;;; init-keys.el ends here