Update references to init file after rename

This commit is contained in:
Jeremy Dormitzer 2020-12-13 08:45:58 -05:00
parent eff7e0fe5b
commit 80abf2fd43
2 changed files with 5 additions and 5 deletions

View File

@ -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"))

View File

@ -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