From 80abf2fd435441551b3703e53672e73a737dce5e Mon Sep 17 00:00:00 2001 From: Jeremy Dormitzer Date: Sun, 13 Dec 2020 08:45:58 -0500 Subject: [PATCH] Update references to init file after rename --- emacs/.emacs.d/init.el | 8 ++++---- emacs/.emacs.d/init.org | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/emacs/.emacs.d/init.el b/emacs/.emacs.d/init.el index 198ea19..4af67fa 100644 --- a/emacs/.emacs.d/init.el +++ b/emacs/.emacs.d/init.el @@ -1,9 +1,9 @@ ;;; -*- lexical-binding: t; -*- -;; If ~/.emacs.d/jdormit-init.el, just load it. Otherwise, first -;; bootstrap Straight and load Org to make sure we end up with the -;; right Org version, then tangle ~/.emacs.d/init.org to -;; ~/.emacs.d/jdormit-init.el +;; If ~/.emacs.d/config/base.el exists, just load it. Otherwise, +;; first bootstrap Straight and load Org to make sure we end up with +;; the right Org version, then tangle ~/.emacs.d/init.org to +;; ~/.emacs.d/config/base.el (defvar init-org-file (expand-file-name "~/.emacs.d/init.org")) (defvar config-base-file (expand-file-name "~/.emacs.d/config/base.el")) diff --git a/emacs/.emacs.d/init.org b/emacs/.emacs.d/init.org index 29e76d8..65d3c1d 100755 --- a/emacs/.emacs.d/init.org +++ b/emacs/.emacs.d/init.org @@ -1605,7 +1605,7 @@ A function to reload my init file. It reloads the major mode after the init file #+BEGIN_SRC emacs-lisp (defun reload-init-file () (interactive) - (load-file "~/.emacs.d/jdormit-init.el") + (load-file "~/.emacs.d/init.el") (funcall major-mode)) #+END_SRC