diff options
author | dx <aryadevchavali1@gmail.com> | 2020-05-04 05:12:09 +0100 |
---|---|---|
committer | dx <aryadevchavali1@gmail.com> | 2020-05-05 02:59:45 +0100 |
commit | cfc7859884d4ad62a1a3c8cee8433e59c8732dcc (patch) | |
tree | ba71be849d1f12e0ae8a947b322f8a754e88e5b5 /Doom | |
parent | 161aa2492c345ae50b514e142695017246bb31f0 (diff) | |
download | dotfiles-cfc7859884d4ad62a1a3c8cee8433e59c8732dcc.tar.gz dotfiles-cfc7859884d4ad62a1a3c8cee8433e59c8732dcc.tar.bz2 dotfiles-cfc7859884d4ad62a1a3c8cee8433e59c8732dcc.zip |
~setq -> defvar
Diffstat (limited to 'Doom')
-rw-r--r-- | Doom/.doom.d/org/literate.org | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/Doom/.doom.d/org/literate.org b/Doom/.doom.d/org/literate.org index 47a8a64..f10f7de 100644 --- a/Doom/.doom.d/org/literate.org +++ b/Doom/.doom.d/org/literate.org @@ -10,9 +10,8 @@ Initialise some basic constants for where stuff is. - literate/preloaded-files: Relative to ~$DOOM~, which files are already preloaded/don't need to be compiled #+BEGIN_SRC elisp -(setq dx:literate/bin-dir (expand-file-name (concat doom-private-dir "bin/"))) -(setq dx:literate/preloaded-files (list "README.org" "org/packages.org" - "org/config.org" "org/literate.org")) +(defvar dx:literate/bin-dir (expand-file-name (concat doom-private-dir "bin/")) "Directory to store elisp compiled files") +(defvar dx:literate/load-files '("~/.doom.d/org/personal.org") "Files to load after compilation") #+END_SRC * Remove function When loading the lisp, we need to load everything excluding "config.el" |