diff options
author | Thanos Apollo <[email protected]> | 2024-02-21 23:46:56 +0200 |
---|---|---|
committer | Thanos Apollo <[email protected]> | 2024-02-21 23:46:56 +0200 |
commit | c2413e041d9d62f17cfb12053752e87ae7cf2207 (patch) | |
tree | 13b7d29853ec7012e28f1caf6a74bd20f9e59bd3 | |
parent | c73d09c9ef3d1690a4ff97f73fe7bdc9b5163dc8 (diff) |
emacs: Make sure C-z is disabled :)
-rw-r--r-- | .emacs.d/init.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.emacs.d/init.el b/.emacs.d/init.el index f8f37b2..4310b48 100644 --- a/.emacs.d/init.el +++ b/.emacs.d/init.el @@ -44,7 +44,7 @@ (define-key global-map (kbd "M-<backspace>") 'backward-kill-sexp) (define-key global-map (kbd "C-c L") 'display-line-numbers-mode) - +(define-key global-map (kbd "C-z") 'nil) (add-to-list 'load-path "~/.emacs.d/modules") (setf disabled-command-function nil ;; Enable all commands |