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)