summary refs log tree commit diff stats
path: root/init.el
diff options
context:
space:
mode:
authorCase Duckworth2021-01-09 14:45:15 -0600
committerCase Duckworth2021-01-09 14:45:29 -0600
commitcffd5b60c3ce647950ce84b01a323e9c5787df54 (patch)
treefdfb2b2d3430814bbf152ac938354c5eaf84d462 /init.el
parentFix org loading on tangle (diff)
downloademacs-cffd5b60c3ce647950ce84b01a323e9c5787df54.tar.gz
emacs-cffd5b60c3ce647950ce84b01a323e9c5787df54.zip
Change comment formatting
Diffstat (limited to 'init.el')
-rw-r--r--init.el8
1 files changed, 5 insertions, 3 deletions
diff --git a/init.el b/init.el index eb25e2e..e8b999d 100644 --- a/init.el +++ b/init.el
@@ -12,8 +12,10 @@
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 15 ;; A plain require here just loads the older `org'
16 ;; need to add the newer one to the `load-path', hopefully that's all. 16 ;; in Emacs' install dir. We need to add the newer
17 (add-to-list 'load-path (expand-file-name "straight/build/org/")) 17 ;; one to the `load-path', hopefully that's all.
18 (add-to-list 'load-path (expand-file-name "straight/build/org"
19 user-emacs-directory))
18 (require 'org) 20 (require 'org)
19 (org-babel-load-file conf-org))) 21 (org-babel-load-file conf-org)))