diff options
-rw-r--r-- | init.el | 19 |
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")) + |