Update vars order

This commit is contained in:
James Cherti
2025-08-11 14:15:46 -04:00
parent d55daca020
commit c6f0cda318

View File

@@ -58,16 +58,6 @@ Ignored if `minimal-emacs-optimize-startup-gc' is nil.")
(defvar minimal-emacs-gc-cons-threshold-restore-delay nil (defvar minimal-emacs-gc-cons-threshold-restore-delay nil
"Number of seconds to wait before restoring `gc-cons-threshold'.") "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 (defvar minimal-emacs-optimize-file-name-handler-alist t
"Enable optimization of `file-name-handler-alist'. "Enable optimization of `file-name-handler-alist'.
When non-nil, this variable activates optimizations to reduce file name handler 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 If nil, these variables are left at their default values and are not
modified during setup.") 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 (defvar minimal-emacs-user-directory user-emacs-directory
"Directory beneath minimal-emacs.d files are placed. "Directory beneath minimal-emacs.d files are placed.
Note that this should end with a directory separator.") Note that this should end with a directory separator.")