From 27c84a4a3192e502deb77e4550716e05c15a65a8 Mon Sep 17 00:00:00 2001 From: Evie Litherland-Smith Date: Tue, 18 Jun 2024 06:55:34 +0100 Subject: [PATCH] Don't disable suspend-frame command --- init.el | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/init.el b/init.el index 8d8d7f7..8c95d15 100644 --- a/init.el +++ b/init.el @@ -6,15 +6,12 @@ ;; Stop popups for warning messages, keep in log buffer (setopt warning-minimum-level :error) -;; Disable `suspend-frame' command -(put 'suspend-frame 'disabled - "Doesn't work nicely with tiling window managers (e.g. Sway)") - ;; Configure packages archives with priority (load-file (locate-user-emacs-file "package-config.el")) (setq custom-file (locate-user-emacs-file "custom.el")) -(when (and custom-file (file-exists-p custom-file)) +(when (and custom-file + (file-exists-p custom-file)) (load custom-file nil 'nomessage)) (set-default-coding-systems 'utf-8)