summary refs log tree commit diff stats
path: root/README.md
diff options
context:
space:
mode:
authorCase Duckworth2021-01-03 08:41:14 -0600
committerCase Duckworth2021-01-03 08:41:14 -0600
commit4ca9b078b3fc7573a9be268f8e5022709680064b (patch)
treecb0ae92dd06ce964b39a2909f5590106473bfcb1 /README.md
parentAdd newer Org to load-path before tangling (diff)
downloademacs-4ca9b078b3fc7573a9be268f8e5022709680064b.tar.gz
emacs-4ca9b078b3fc7573a9be268f8e5022709680064b.zip
Update README
Diffstat (limited to 'README.md')
-rw-r--r--README.md13
1 files changed, 8 insertions, 5 deletions
diff --git a/README.md b/README.md index 44219ec..5a1bfdc 100644 --- a/README.md +++ b/README.md
@@ -1317,19 +1317,22 @@ I’ve put org mode under Applications, as opposed to Writing, because it’s m
1317 (conf-org (concat conf ".org"))) 1317 (conf-org (concat conf ".org")))
1318 (unless (and (file-newer-than-file-p conf-el conf-org) 1318 (unless (and (file-newer-than-file-p conf-el conf-org)
1319 (load conf 'no-error)) 1319 (load conf 'no-error))
1320 ;; A plain require here just loads the older `org' in Emacs' install dir. We
1321 ;; need to add the newer one to the `load-path', hopefully that's all.
1322 (add-to-list 'load-path (expand-file-name "straight/build/org/"))
1320 (require 'org) 1323 (require 'org)
1321 (org-babel-load-file conf-org))) 1324 (org-babel-load-file conf-org)))
1322 1325
1323 1326
1324### early-init.el 1327### early-init.el
1325 1328
1326 ;; early-init.el -*- no-byte-compile: t; -*- 1329 ;; early-init.el -*- no-byte-compile: t; -*-
1327 1330
1328 ;; I use `straight.el' instead of `package.el'. 1331 ;; I use `straight.el' instead of `package.el'.
1329 (setq package-enable-at-startup nil) 1332 ;; (setq package-enable-at-startup nil)
1330 1333
1331 ;; Don't resize the frame when loading fonts 1334 ;; Don't resize the frame when loading fonts
1332 (setq frame-inhibit-implied-resize t) 1335 (setq frame-inhibit-implied-resize t)
1333 1336
1334 1337
1335## Ease tangling and loading of Emacs' init 1338## Ease tangling and loading of Emacs' init