From aeaec352dfe244836034df4080dd47b0a15db711 Mon Sep 17 00:00:00 2001 From: James Cherti <60946298+jamescherti@users.noreply.github.com> Date: Wed, 19 Jun 2024 16:33:22 -0400 Subject: [PATCH] Rename user-(post|pre)-init.el to (post|pre)-init.el --- early-init.el | 4 ++-- init.el | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/early-init.el b/early-init.el index eb75879..024556b 100644 --- a/early-init.el +++ b/early-init.el @@ -21,7 +21,7 @@ (when (file-exists-p user-init-file) (load user-init-file)))) -(minimal-emacs-load-user-init "user-pre-early-init.el") +(minimal-emacs-load-user-init "pre-early-init.el") ;; Garbage collection significantly affects startup times. This setting delays ;; garbage collection during startup but will be reset later. @@ -49,7 +49,7 @@ (when (fboundp 'horizontal-scroll-bar-mode) (horizontal-scroll-bar-mode -1)) -(minimal-emacs-load-user-init "user-post-early-init.el") +(minimal-emacs-load-user-init "post-early-init.el") (provide 'early-init) diff --git a/init.el b/init.el index 432a63c..948ff2c 100644 --- a/init.el +++ b/init.el @@ -15,7 +15,7 @@ ;;; Code: ;;; Load user-pre-init.el -(minimal-emacs-load-user-init "user-pre-init.el") +(minimal-emacs-load-user-init "pre-init.el") ;;; package: Set package archives for package installation (progn @@ -53,7 +53,7 @@ (require 'use-package))) ;;; Load user-pre-init.el -(minimal-emacs-load-user-init "user-post-init.el") +(minimal-emacs-load-user-init "post-init.el") (provide 'init)