From 07bfc40c2073f81acbda1c506c07bc56f608c5f1 Mon Sep 17 00:00:00 2001 From: James Cherti <60946298+jamescherti@users.noreply.github.com> Date: Wed, 14 Jan 2026 07:31:51 -0500 Subject: [PATCH] use-package: Expand minimally --- early-init.el | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/early-init.el b/early-init.el index 116f1ac..1a63aca 100644 --- a/early-init.el +++ b/early-init.el @@ -146,11 +146,11 @@ pre-early-init.el, and post-early-init.el.") (let ((init-file (expand-file-name filename minimal-emacs-user-directory))) (if (not minimal-emacs-load-compiled-init-files) - (load init-file :no-error (not init-file-debug) :nosuffix) + (load init-file :no-error (not minimal-emacs-debug) :nosuffix) ;; Remove the file suffix (.el, .el.gz, etc.) to let the `load' function ;; select between .el and .elc files. (setq init-file (minimal-emacs--remove-el-file-suffix init-file)) - (load init-file :no-error (not init-file-debug))))) + (load init-file :no-error (not minimal-emacs-debug))))) (minimal-emacs-load-user-init "pre-early-init.el") @@ -467,7 +467,7 @@ this stage of initialization." ;; Setting use-package-expand-minimally to (t) results in a more compact output ;; that emphasizes performance over clarity. -(setq use-package-expand-minimally (not minimal-emacs-debug)) +(setq use-package-expand-minimally (not noninteractive)) (setq package-quickstart-file (expand-file-name "package-quickstart.el" user-emacs-directory))