summary refs log tree commit diff
path: root/config/init-keys.el
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--config/init-keys.el19
1 files changed, 0 insertions, 19 deletions
diff --git a/config/init-keys.el b/config/init-keys.el
deleted file mode 100644
index a197043..0000000
--- a/config/init-keys.el
+++ /dev/null
@@ -1,19 +0,0 @@
-;;; 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