summary refs log tree commit diff stats
path: root/init.el
diff options
context:
space:
mode:
Diffstat (limited to 'init.el')
-rw-r--r--init.el3
1 files changed, 3 insertions, 0 deletions
diff --git a/init.el b/init.el index faef4d4..eb25e2e 100644 --- a/init.el +++ b/init.el
@@ -12,5 +12,8 @@
12 (conf-org (concat conf ".org"))) 12 (conf-org (concat conf ".org")))
13 (unless (and (file-newer-than-file-p conf-el conf-org) 13 (unless (and (file-newer-than-file-p conf-el conf-org)
14 (load conf 'no-error)) 14 (load conf 'no-error))
15 ;; A plain require here just loads the older `org' in Emacs' install dir. We
16 ;; need to add the newer one to the `load-path', hopefully that's all.
17 (add-to-list 'load-path (expand-file-name "straight/build/org/"))
15 (require 'org) 18 (require 'org)
16 (org-babel-load-file conf-org))) 19 (org-babel-load-file conf-org)))