diff options
author | Case Duckworth | 2022-01-03 15:16:47 -0600 |
---|---|---|
committer | Case Duckworth | 2022-01-03 15:17:03 -0600 |
commit | 603cec0f1145a07e66ab15baa73d2d0d00c9645b (patch) | |
tree | d22530c40b650ffc614e0480b830caf7f4d80c43 | |
parent | Reindent (diff) | |
download | emacs-603cec0f1145a07e66ab15baa73d2d0d00c9645b.tar.gz emacs-603cec0f1145a07e66ab15baa73d2d0d00c9645b.zip |
Don't require _work until it's needed
-rw-r--r-- | init.el | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/init.el b/init.el index 7058e36..0d4716b 100644 --- a/init.el +++ b/init.el | |||
@@ -20,8 +20,7 @@ | |||
20 | 20 | ||
21 | (dolist (feature `((early-init . ,(locate-user-emacs-file "early-init")) | 21 | (dolist (feature `((early-init . ,(locate-user-emacs-file "early-init")) |
22 | acdw | 22 | acdw |
23 | private | 23 | private)) |
24 | _work)) | ||
25 | (require (or (car-safe feature) feature) (cdr-safe feature) :noerror)) | 24 | (require (or (car-safe feature) feature) (cdr-safe feature) :noerror)) |
26 | 25 | ||
27 | (setup (:require +emacs) | 26 | (setup (:require +emacs) |
@@ -365,7 +364,8 @@ | |||
365 | (string-match-p "lisp/org\\'" path)) | 364 | (string-match-p "lisp/org\\'" path)) |
366 | load-path)) | 365 | load-path)) |
367 | (:also-load +org | 366 | (:also-load +org |
368 | ox-md) | 367 | ox-md |
368 | _work) | ||
369 | (:option org-adapt-indentation nil | 369 | (:option org-adapt-indentation nil |
370 | org-archive-mark-done t | 370 | org-archive-mark-done t |
371 | org-catch-invisible-edits 'show-and-error | 371 | org-catch-invisible-edits 'show-and-error |