summary refs log tree commit diff stats
path: root/init.el
diff options
context:
space:
mode:
authoreli <eli@newstartmobile.com>2022-11-26 22:19:59 -0500
committereli <eli@newstartmobile.com>2022-11-26 22:19:59 -0500
commit6656e1a151939d39aad5f08a1a471f175f3d0448 (patch)
tree417be357e81dd84231034ddbea3720d27235fd4f /init.el
parente67a1759bb5989f48f01e8ba10a4a92c8993b325 (diff)
downloademacs-6656e1a151939d39aad5f08a1a471f175f3d0448.tar.gz
*
Diffstat (limited to 'init.el')
-rw-r--r--init.el19
1 files changed, 12 insertions, 7 deletions
diff --git a/init.el b/init.el
index 56405e5..64f62af 100644
--- a/init.el
+++ b/init.el
@@ -15,13 +15,6 @@
     (expand-file-name "~/.emacs.d/lisp/custom.el" user-emacs-directory))
 (load custom-file)
 
-;; Instruct emacs to check for personal-pizza.el
-;; This file is used for one-off overrides and any
-;; tweaks that need to be made to ooo.el rather than
-;; editing the config directly.
-(when (file-exists-p "~/.emacs.d/lisp/personal-pizza.el")
-  (load "~/.emacs.d/lisp/personal-pizza.el"))
-
 ;; Who am I -- probably modify this bit if you aren't me.
 (setq user-full-name "Eli Mellen"
       user-mail-address "hi@eli.li")
@@ -329,3 +322,15 @@
      (define-key flyspell-mouse-map [down-mouse-3] #'flyspell-correct-word)
      (define-key flyspell-mouse-map [mouse-3] #'undefined)))
 
+
+
+
+;; Instruct emacs to check for personal-pizza.el
+;; This file is used for one-off overrides and any
+;; tweaks that need to be made to init.el rather than
+;; editing the config directly. Should be loaded last,
+;; or at least after straight has been bootstrapped and
+;; loaded some other stuff.
+(when (file-exists-p "~/.emacs.d/lisp/personal-pizza.el")
+  (load "~/.emacs.d/lisp/personal-pizza.el"))
+