From 11f79fbcd61ee2573feb705c544f820f06a02aa5 Mon Sep 17 00:00:00 2001 From: rearman Date: Wed, 15 Mar 2023 12:03:02 -0400 Subject: [PATCH] Require org first (oops) --- init.el | 2 ++ init.org | 2 ++ 2 files changed, 4 insertions(+) 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... -- 2.39.5