diff options
author | AChavali <aryadevchavali1@gmail.com> | 2020-01-17 02:31:28 +0000 |
---|---|---|
committer | AChavali <aryadevchavali1@gmail.com> | 2020-01-17 02:31:28 +0000 |
commit | a124a76ffea5a269e176eda60f19ba0b60c1dcdd (patch) | |
tree | 8b3105b37b663eee40a4c6de27667837832c2788 | |
parent | febf1879fa6be3c12ad49cb05b1ebfd69a0c4574 (diff) | |
download | dotfiles-a124a76ffea5a269e176eda60f19ba0b60c1dcdd.tar.gz dotfiles-a124a76ffea5a269e176eda60f19ba0b60c1dcdd.tar.bz2 dotfiles-a124a76ffea5a269e176eda60f19ba0b60c1dcdd.zip |
~load! -> load
if loading the destination file, it will not be local but rather the
expanded version of it
-rw-r--r-- | doom.d/modules/literate.org | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doom.d/modules/literate.org b/doom.d/modules/literate.org index 09c7829..ffb036a 100644 --- a/doom.d/modules/literate.org +++ b/doom.d/modules/literate.org @@ -90,7 +90,7 @@ Final step of the literate cycle: load the config for the first time. #+BEGIN_SRC elisp (let ((files (directory-files-recursively "~/.doom.d/" ".org"))) ; Load (dolist (file (oreodave/literate/remove-mult oreodave/literate/preloaded-files files)) - (load! (oreodave/literate/destination file)))) + (load (oreodave/literate/destination file)))) #+END_SRC Remove the config.el and literate.el files from the load list because: 1) config.org is preloaded by doom |