From: rearman Date: Wed, 15 Mar 2023 16:03:02 +0000 (-0400) Subject: Require org first (oops) X-Git-Url: https://git.earman.xyz/?a=commitdiff_plain;h=11f79fbcd61ee2573feb705c544f820f06a02aa5;p=emacsinit.git Require org first (oops) --- diff --git a/init.el b/init.el index 197bca2..2c05c64 100644 --- a/init.el +++ b/init.el @@ -1,3 +1,5 @@ +;; We Can't tangle without org! +(require 'org) ;; Create the real config... (org-babel-tangle (concat user-emacs-directory "init.org")) ;; Load it... diff --git a/init.org b/init.org index 86c65ae..ce1ae19 100644 --- a/init.org +++ b/init.org @@ -18,6 +18,8 @@ I have taken this mostly whole-hog from [[https://github.com/larstvei/dot-emacs] This is the repo's =init.el= file, which bootstraps the real =init.el=. #+BEGIN_SRC emacs-lisp :tangle no +;; We Can't tangle without org! +(require 'org) ;; Create the real config... (org-babel-tangle (concat user-emacs-directory "init.org")) ;; Load it...