From f9acf40d462b571e18d6baf08069f3659f824765 Mon Sep 17 00:00:00 2001 From: Rawley <75388349+rawleyfowler@users.noreply.github.com> Date: Mon, 25 Sep 2023 19:23:26 -0600 Subject: [PATCH] Unset C-z et. al --- init.el | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/init.el b/init.el index e37ab03..9e8d450 100644 --- a/init.el +++ b/init.el @@ -38,6 +38,12 @@ (when (eq system-type 'darwin) (setq ns-function-modifier 'control)) +(when (display-graphic-p) + (global-unset-key (kbd "C-z")) + (global-unset-key (kbd "C-x C-z"))) + +(global-set-key (kbd "M-o") #'other-window) + (require 'package) ;; Add melpa to your packages repositories