We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1f243f3 commit 14b897dCopy full SHA for 14b897d
early-init.el
@@ -0,0 +1,16 @@
1
+;;; early-init.el --- Emacs 27+ pre-initialisation config
2
+
3
+;;; Commentary:
4
5
+;; Emacs 27+ loads this file before (normally) calling
6
+;; `package-initialize'. We use this file to suppress that automatic
7
+;; behaviour so that startup is consistent across Emacs versions.
8
9
+;;; Code:
10
11
+(setq package-enable-at-startup nil)
12
13
+;; So we can detect this having been loaded
14
+(provide 'early-init)
15
16
+;;; early-init.el ends here
0 commit comments