diff options
-rw-r--r-- | doom.d/org/config.org (renamed from doom.d/config/config.org) | 5 | ||||
-rw-r--r-- | doom.d/org/literate.org (renamed from doom.d/config/literate.org) | 10 | ||||
-rw-r--r-- | doom.d/org/packages.org (renamed from doom.d/config/packages.org) | 0 | ||||
-rw-r--r-- | doom.d/org/personal.org (renamed from doom.d/config/personal.org) | 0 | ||||
-rw-r--r-- | doom.d/org/writers.org (renamed from doom.d/config/writers.org) | 0 |
5 files changed, 7 insertions, 8 deletions
diff --git a/doom.d/config/config.org b/doom.d/org/config.org index 27db521..3b12709 100644 --- a/doom.d/config/config.org +++ b/doom.d/org/config.org @@ -17,7 +17,7 @@ Load the literate.el file to start parsing. #+BEGIN_SRC elisp (after! core-keybinds (setq doom-localleader-key ",") - (setq doom-theme 'base16-3024) + (setq doom-theme 'doom-solarized-dark) (setq doom-font (font-spec :family "Hack" :size 17))) #+END_SRC - Set the doom localleader to "," because it's faster @@ -27,7 +27,7 @@ Load the literate.el file to start parsing. (setq completion-ignore-case t) (setq truncate-lines t) (setq display-line-numbers-type nil) -(setq bookmark-default-file (expand-file-name (concat doom-private-dir "/bookmarks"))) +(setq bookmark-default-file (expand-file-name (concat doom-private-dir "bookmarks"))) (setq-default frame-title-format '("%b - Emacs")) (cl-pushnew '("Libgen" "http://gen.lib.rus.ec/search.php?req=%s") +lookup-provider-url-alist :key #'car :test 'string=) #+END_SRC @@ -122,7 +122,6 @@ If RETURN-P, return the message as a string instead of displaying it." :icon (all-the-icons-octicon "file-directory" :face 'font-lock-keyword-face) :action oreodave/goto-dotfiles))) #+END_SRC - - Space image comes from [[https://flaticon.com][website]] - Remove the Github link to the official Doom Emacs repository: it's in muscle memory at this point. diff --git a/doom.d/config/literate.org b/doom.d/org/literate.org index 5815708..19829cf 100644 --- a/doom.d/config/literate.org +++ b/doom.d/org/literate.org @@ -11,8 +11,8 @@ Initialise some basic constants for where stuff is. preloaded/don't need to be compiled #+BEGIN_SRC elisp (setq oreodave/literate/bin-dir (expand-file-name (concat doom-private-dir "bin/"))) -(setq oreodave/literate/preloaded-files (list "README.org" "config/packages.org" - "config/config.org" "config/literate.org")) +(setq oreodave/literate/preloaded-files (list "README.org" "org/packages.org" + "org/config.org" "org/literate.org")) #+END_SRC * Remove function When loading the lisp, we need to load everything excluding "config.el" @@ -70,10 +70,10 @@ loaded. README.org has been added as an exception because it doesn't contain literate contents. #+BEGIN_SRC elisp (defun oreodave/literate/compile-hook () - "Any org file within $DOOM/config will be compiled on save" + "Any org file within $DOOM/org will be compiled on save" (when (and (eq major-mode 'org-mode) (or (file-in-directory-p buffer-file-name doom-private-dir) - (file-in-directory-p buffer-file-name (concat doom-private-dir "config"))) + (file-in-directory-p buffer-file-name (concat doom-private-dir "org"))) (not (string= buffer-file-name (expand-file-name (concat doom-private-dir "README.org"))))) (oreodave/literate/tangle buffer-file-name (oreodave/literate/destination buffer-file-name)))) @@ -105,7 +105,7 @@ Remove the config.el and literate.el files from the load list because: 2) literate.org is loaded by config.org, thus no need to reload it #+BEGIN_SRC elisp -(let ((files (directory-files-recursively "~/.doom.d/config/" ".org"))) ; Load +(let ((files (directory-files-recursively "~/.doom.d/org/" ".org"))) ; Load (dolist (file (oreodave/literate/remove-mult oreodave/literate/preloaded-files files)) (load (oreodave/literate/destination file)))) #+END_SRC diff --git a/doom.d/config/packages.org b/doom.d/org/packages.org index f8d6b11..f8d6b11 100644 --- a/doom.d/config/packages.org +++ b/doom.d/org/packages.org diff --git a/doom.d/config/personal.org b/doom.d/org/personal.org index b2683e0..b2683e0 100644 --- a/doom.d/config/personal.org +++ b/doom.d/org/personal.org diff --git a/doom.d/config/writers.org b/doom.d/org/writers.org index 825a7b0..825a7b0 100644 --- a/doom.d/config/writers.org +++ b/doom.d/org/writers.org |