From: rearman Date: Wed, 15 Mar 2023 16:12:45 +0000 (-0400) Subject: Fix embarrassing typo X-Git-Url: https://git.earman.xyz/?a=commitdiff_plain;h=85433745d2d72c5c249d2e6d5a9dc0fd995ebd57;p=emacsinit.git Fix embarrassing typo --- diff --git a/init.el b/init.el index 0321d27..dcb988d 100644 --- a/init.el +++ b/init.el @@ -2,7 +2,7 @@ ;; We Can't tangle without org! (require 'org) ;; Open the config... -(find-file (concat user-emacs-directory "init.el")) +(find-file (concat user-emacs-directory "init.org")) ;; Tangle it... (org-babel-tangle) ;; Load it... diff --git a/init.org b/init.org index ed34b2b..11a973d 100644 --- a/init.org +++ b/init.org @@ -22,7 +22,7 @@ This is the repo's =init.el= file, which bootstraps the real =init.el=. ;; We Can't tangle without org! (require 'org) ;; Open the config... -(find-file (concat user-emacs-directory "init.el")) +(find-file (concat user-emacs-directory "init.org")) ;; Tangle it... (org-babel-tangle) ;; Load it...