summary refs log tree commit diff
diff options
context:
space:
mode:
authorFranck Cuny <franck@fcuny.net>2024-04-19 10:00:55 -0700
committerFranck Cuny <franck@fcuny.net>2024-04-19 10:00:55 -0700
commit2c940173aa0d3859972af8936164cd117dcb947a (patch)
tree9220d1f342213d9398db9c0a6237cf163471f078
parentclean up a bit more `flymake` configuration (diff)
downloademacs.d-2c940173aa0d3859972af8936164cd117dcb947a.tar.gz
add back the binding for `join-line`
Change-Id: Iccf1e7fcfcc8c121c482810586f72a0277d3ed69
-rw-r--r--config/init-keys.el6
1 files changed, 3 insertions, 3 deletions
diff --git a/config/init-keys.el b/config/init-keys.el
index a3686fe..a197043 100644
--- a/config/init-keys.el
+++ b/config/init-keys.el
@@ -7,12 +7,12 @@
 
 ;;; Code:
 
+(global-set-key (kbd "M-j") 'join-line)
+
 (use-package which-key
-  :demand t
   :diminish
   :ensure t
-  :config
-  (which-key-mode))
+  :hook (after-init . which-key-mode))
 
 (provide 'init-keys)