aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAChavali <aryadevchavali1@gmail.com>2019-12-30 23:26:29 +0000
committerAChavali <aryadevchavali1@gmail.com>2019-12-30 23:26:29 +0000
commit5bd1fbf51ada41ac3f98e1b184d333af10528d10 (patch)
treeaca57a9c60a28fc9a876ef7e5d2fdae8360a583f
parent091d316c830d7e07eab0d050436ea23e25c2b6e7 (diff)
downloaddotfiles-5bd1fbf51ada41ac3f98e1b184d333af10528d10.tar.gz
dotfiles-5bd1fbf51ada41ac3f98e1b184d333af10528d10.tar.bz2
dotfiles-5bd1fbf51ada41ac3f98e1b184d333af10528d10.zip
~config.org -> modules/config.org
config.el is a file that routes to the bin/config.el, and now config.org is a module
-rw-r--r--.gitignore1
-rw-r--r--doom.d/config.el1
-rw-r--r--doom.d/modules/config.org (renamed from doom.d/config.org)3
3 files changed, 3 insertions, 2 deletions
diff --git a/.gitignore b/.gitignore
index 14ce90a..3bcd8ae 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,4 +1,3 @@
TAGS
-doom.d/config.el
doom.d/bin/*.el
mpd/*
diff --git a/doom.d/config.el b/doom.d/config.el
new file mode 100644
index 0000000..2d893c7
--- /dev/null
+++ b/doom.d/config.el
@@ -0,0 +1 @@
+(load (expand-file-name (concat doom-private-dir "bin/config.el")))
diff --git a/doom.d/config.org b/doom.d/modules/config.org
index 12813ca..0428f49 100644
--- a/doom.d/config.org
+++ b/doom.d/modules/config.org
@@ -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