diff options
Diffstat (limited to 'init')
-rw-r--r-- | init/km-keybindings.el | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/init/km-keybindings.el b/init/km-keybindings.el index b20940e..823c3e5 100644 --- a/init/km-keybindings.el +++ b/init/km-keybindings.el @@ -1,5 +1,10 @@ ;; keybindings that don't go with other topics + (global-set-key (kbd "C-x \\") 'align-regexp) (global-set-key (kbd "C-c i") 'indent-relative) (global-set-key (kbd "C-x K") 'kill-buffer-and-window) + +;; overrides `suspend-emacs' (which is also bound to C-x C-z) +(global-set-key (kbd "C-z") 'zap-to-char) +(global-unset-key (kbd "M-z")) |