From 667d5650621de960fe5720aa92b99034ce4d0fcc Mon Sep 17 00:00:00 2001 From: Maciej Szlosarczyk Date: Thu, 25 Jul 2024 22:28:17 +0300 Subject: [PATCH] Move early init --- custom-init.el | 2 ++ pkg/early-init.el => early-init.el | 0 2 files changed, 2 insertions(+) rename pkg/early-init.el => early-init.el (100%) diff --git a/custom-init.el b/custom-init.el index 7943ec5..df21086 100644 --- a/custom-init.el +++ b/custom-init.el @@ -30,6 +30,8 @@ (straight-use-package 'use-package) +(add-to-list 'load-path (concat user-emacs-directory "pkg")) + ;; General configuration files. (require '+custom-pkg-keys-mode "$HOME/.emacs.d/pkg/keys-mode.el") (require '+custom-pkg-base "$HOME/.emacs.d/pkg/base.el") diff --git a/pkg/early-init.el b/early-init.el similarity index 100% rename from pkg/early-init.el rename to early-init.el