Skip to content

Commit 6bc7e16

Browse files
committed
Change minimal-emacs-package-initialize-and-refresh to nil
1 parent c9cd53c commit 6bc7e16

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

early-init.el

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ lookups during Emacs startup.")
7878
This reduces visual clutter and slightly enhances startup performance. The
7979
tradeoff is that the mode line is hidden during the startup phase.")
8080

81-
(defvar minimal-emacs-package-initialize-and-refresh t
81+
(defvar minimal-emacs-package-initialize-and-refresh nil
8282
"Whether to automatically initialize and refresh packages.
8383
When set to non-nil, Emacs will automatically call `package-initialize' and
8484
`package-refresh-contents' to set up and update the package system.")

init.el

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -427,7 +427,7 @@
427427
(setq dired-omit-files (concat "\\`[.]\\'"))
428428

429429
;; Group directories first
430-
(when minimal-emacs-dired-group-directories-first
430+
(when (bound-and-true-p minimal-emacs-dired-group-directories-first)
431431
(with-eval-after-load 'dired
432432
(let ((args "--group-directories-first -ahlv"))
433433
(when (or (eq system-type 'darwin)

0 commit comments

Comments
 (0)