summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--config.org4
-rw-r--r--init.el4
2 files changed, 6 insertions, 2 deletions
diff --git a/config.org b/config.org index 954f7a7..5aae931 100644 --- a/config.org +++ b/config.org
@@ -3589,8 +3589,10 @@ the needed boolean expression to tangle config.org. Booleans, yall!
3589 (when (file-exists-p straight-org-dir) 3589 (when (file-exists-p straight-org-dir)
3590 (add-to-list 'load-path straight-org-dir)) 3590 (add-to-list 'load-path straight-org-dir))
3591 ;; Load config.org 3591 ;; Load config.org
3592 (message "%s..." "Loading config.org")
3592 (require 'org) 3593 (require 'org)
3593 (org-babel-load-file config.org))) 3594 (org-babel-load-file config.org)
3595 (message "%s... Done" "Loading config.org")))
3594 3596
3595 ;;; init.el ends here 3597 ;;; init.el ends here
3596#+end_src 3598#+end_src
diff --git a/init.el b/init.el index 4741a4f..2fdd1c9 100644 --- a/init.el +++ b/init.el
@@ -42,7 +42,9 @@
42 (when (file-exists-p straight-org-dir) 42 (when (file-exists-p straight-org-dir)
43 (add-to-list 'load-path straight-org-dir)) 43 (add-to-list 'load-path straight-org-dir))
44 ;; Load config.org 44 ;; Load config.org
45 (message "%s..." "Loading config.org")
45 (require 'org) 46 (require 'org)
46 (org-babel-load-file config.org))) 47 (org-babel-load-file config.org)
48 (message "%s... Done" "Loading config.org")))
47 49
48;;; init.el ends here 50;;; init.el ends here