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