diff options
author | dx <aryadevchavali1@gmail.com> | 2020-06-20 00:31:24 +0100 |
---|---|---|
committer | dx <aryadevchavali1@gmail.com> | 2020-06-20 00:31:24 +0100 |
commit | b4713cb8d1eae190bd308c5dc68e0bf58a9e6e59 (patch) | |
tree | b5a7653ec51089a3e90cadce314638ea92065769 /Doom/.doom.d | |
parent | 1da6e2862861e78f2e304cec715db41b95f5a8e2 (diff) | |
download | dotfiles-b4713cb8d1eae190bd308c5dc68e0bf58a9e6e59.tar.gz dotfiles-b4713cb8d1eae190bd308c5dc68e0bf58a9e6e59.tar.bz2 dotfiles-b4713cb8d1eae190bd308c5dc68e0bf58a9e6e59.zip |
~defvar -> defconst
Diffstat (limited to 'Doom/.doom.d')
-rw-r--r-- | Doom/.doom.d/config.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Doom/.doom.d/config.el b/Doom/.doom.d/config.el index ff9ee06..dd54d9a 100644 --- a/Doom/.doom.d/config.el +++ b/Doom/.doom.d/config.el @@ -1,7 +1,7 @@ ;;; ~/Dotfiles/doom.d/config.el -*- lexical-binding: t; -*- -(defvar +bootstrap/org-files '("config.org" "personal.org") "Org files to load relative to =doom-private-dir=/org/*") -(defvar +bootstrap/byte-compile t "Byte compile org files") +(defconst +bootstrap/org-files '("config.org" "personal.org") "Org files to load relative to =doom-private-dir=/org/*") +(defconst +bootstrap/byte-compile t "Byte compile org files") (defun +bootstrap/apply-files (babel-func) "Apply babel-func to a transformed list of org-files" |