aboutsummaryrefslogtreecommitdiff
path: root/macos.local/.flake/home
diff options
context:
space:
mode:
Diffstat (limited to 'macos.local/.flake/home')
-rw-r--r--macos.local/.flake/home/programs/emacs/core.nix.org1
-rw-r--r--macos.local/.flake/home/programs/emacs/early-init.el.org6
2 files changed, 7 insertions, 0 deletions
diff --git a/macos.local/.flake/home/programs/emacs/core.nix.org b/macos.local/.flake/home/programs/emacs/core.nix.org
index 1645f53..2bb4237 100644
--- a/macos.local/.flake/home/programs/emacs/core.nix.org
+++ b/macos.local/.flake/home/programs/emacs/core.nix.org
@@ -6,6 +6,7 @@ Here is my Emacs configuration. This file just defines configurations that shoul
{
home.file = {
+ "./.config/emacs/early-init.el".source = ./early-init.el;
"./.config/emacs/feed.org".source = ./feed.org;
"./.config/emacs/init.el".source = ./init.el;
};
diff --git a/macos.local/.flake/home/programs/emacs/early-init.el.org b/macos.local/.flake/home/programs/emacs/early-init.el.org
new file mode 100644
index 0000000..ed452e7
--- /dev/null
+++ b/macos.local/.flake/home/programs/emacs/early-init.el.org
@@ -0,0 +1,6 @@
+#+title: Emacs Early Initialization
+
+Disable =package.el= at startup so that =elpaca= can enable it on its own.
+#+begin_src emacs-lisp
+ (setq package-enable-at-startup nil)
+#+end_src