summaryrefslogblamecommitdiff
path: root/config/init-keys.el
blob: a197043ca95f877fac464304c7266fe37953f751 (plain) (tree)
1
2
3
4
5
6
7
8
9








                                                                      

                                       
                      

           
                                      



                          
;;; init-keys.el --- Configure key bindings -*- lexical-binding: t -*-
;; Author: Franck Cuny <franck@fcuny.net>

;;; 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