summary refs log tree commit diff
path: root/config/init-keys.el
blob: a197043ca95f877fac464304c7266fe37953f751 (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:

(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