aboutsummaryrefslogtreecommitdiff
path: root/dot.emacs.d
diff options
context:
space:
mode:
authorThomas Schneider <qsx@chaotikum.eu>2024-08-26 16:25:32 +0200
committerThomas Schneider <qsx@chaotikum.eu>2024-08-26 16:25:32 +0200
commit680f60351d7d6793acd07393a76175d93a0bd43a (patch)
treed0108f416465d41ee5da187cad6e67c0d993087c /dot.emacs.d
parent0a1fd7c03b35b85a0eb617d7dd0a817e6b1bca04 (diff)
Emacs: Move package-enable-at-startup to early-init.el
Diffstat (limited to 'dot.emacs.d')
-rw-r--r--dot.emacs.d/early-init.el1
-rw-r--r--dot.emacs.d/init.el2
2 files changed, 2 insertions, 1 deletions
diff --git a/dot.emacs.d/early-init.el b/dot.emacs.d/early-init.el
new file mode 100644
index 0000000..512068a
--- /dev/null
+++ b/dot.emacs.d/early-init.el
@@ -0,0 +1 @@
+(setq package-enable-at-startup nil)
diff --git a/dot.emacs.d/init.el b/dot.emacs.d/init.el
index 143cdad..b87158c 100644
--- a/dot.emacs.d/init.el
+++ b/dot.emacs.d/init.el
@@ -1,5 +1,5 @@
+;; See early-init.el for further package stuff
(require 'package)
-(setq package-enable-at-startup nil)
(setq package-archives
'(("melpa-stable" . "https://stable.melpa.org/packages/")
("melpa-unstable" . "https://melpa.org/packages/")