~config.org -> modules/config.org

config.el is a file that routes to the bin/config.el, and now config.org
is a module
This commit is contained in:
AChavali
2019-12-30 23:26:29 +00:00
parent 091d316c83
commit 5bd1fbf51a
3 changed files with 3 additions and 2 deletions

1
.gitignore vendored
View File

@@ -1,4 +1,3 @@
TAGS
doom.d/config.el
doom.d/bin/*.el
mpd/*

1
doom.d/config.el Normal file
View File

@@ -0,0 +1 @@
(load (expand-file-name (concat doom-private-dir "bin/config.el")))

View File

@@ -8,8 +8,9 @@ possible. It is currently my main editor overall, literally overtaking my life.
* Variables
Bootstrapping literate module and setting up basic variables.
** Bootstrap literate
Load the literate.el file to start parsing.
#+BEGIN_SRC elisp
(load! "modules/literate.el")
(load (expand-file-name (concat doom-private-dir "bin/literate.el")))
#+END_SRC
** Doom Variables
#+BEGIN_SRC elisp