From c6f0cda3186a78065c1ffc212d535a621c0382fe Mon Sep 17 00:00:00 2001 From: James Cherti <60946298+jamescherti@users.noreply.github.com> Date: Mon, 11 Aug 2025 14:15:46 -0400 Subject: [PATCH] Update vars order --- early-init.el | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/early-init.el b/early-init.el index 730122f..0d70345 100644 --- a/early-init.el +++ b/early-init.el @@ -58,16 +58,6 @@ Ignored if `minimal-emacs-optimize-startup-gc' is nil.") (defvar minimal-emacs-gc-cons-threshold-restore-delay nil "Number of seconds to wait before restoring `gc-cons-threshold'.") -(defvar minimal-emacs-inhibit-redisplay-during-startup nil - "Suppress redisplay during startup to improve performance. -This prevents visual updates while Emacs initializes. The tradeoff is that you -won't see the progress or activities during the startup process.") - -(defvar minimal-emacs-inhibit-message-during-startup nil - "Suppress startup messages for a cleaner experience. -This slightly enhances performance. The tradeoff is that you won't be informed -of the progress or any relevant activities during startup.") - (defvar minimal-emacs-optimize-file-name-handler-alist t "Enable optimization of `file-name-handler-alist'. When non-nil, this variable activates optimizations to reduce file name handler @@ -93,6 +83,16 @@ native compilation features: If nil, these variables are left at their default values and are not modified during setup.") +(defvar minimal-emacs-inhibit-redisplay-during-startup nil + "Suppress redisplay during startup to improve performance. +This prevents visual updates while Emacs initializes. The tradeoff is that you +won't see the progress or activities during the startup process.") + +(defvar minimal-emacs-inhibit-message-during-startup nil + "Suppress startup messages for a cleaner experience. +This slightly enhances performance. The tradeoff is that you won't be informed +of the progress or any relevant activities during startup.") + (defvar minimal-emacs-user-directory user-emacs-directory "Directory beneath minimal-emacs.d files are placed. Note that this should end with a directory separator.")