From a62791091ed21a77677d21061ddda6f2520f5150 Mon Sep 17 00:00:00 2001
From: dx <aryadevchavali1@gmail.com>
Date: Sat, 2 May 2020 07:15:27 +0100
Subject: ~rearranged some documenting content in config.org

---
 Doom/.doom.d/org/config.org | 16 ++++++++--------
 1 file changed, 8 insertions(+), 8 deletions(-)

diff --git a/Doom/.doom.d/org/config.org b/Doom/.doom.d/org/config.org
index feb9c44..d00e82d 100644
--- a/Doom/.doom.d/org/config.org
+++ b/Doom/.doom.d/org/config.org
@@ -7,23 +7,27 @@
 - This is my [[https://github.com/hlissner/doom-emacs][Doom Emacs]] configuration.
 - Use it for most of my code editing and development needs.
 - Incredibly versatile tool in my inventory.
-* Variables and Bootstrap config
-Bootstrap via literate and setting up basic variables.
+* Init
+Initialize literate config and setup some basic variables
 ** Bootstrap
 Load the literate.el file to start parsing.
 #+BEGIN_SRC elisp
 (load (expand-file-name (concat doom-private-dir "bin/literate.el")))
 #+END_SRC
 ** Doom Variables
+- Set the doom localleader to "," because it's faster
+- Using the font [[https://sourcefoundry.org/hack/][Hack]]
 #+BEGIN_SRC elisp
 (after! core-keybinds
   (setq doom-localleader-key ",")
   (setq doom-theme 'doom-molokai)
   (setq doom-font (font-spec :family "Hack" :size 17)))
 #+END_SRC
-- Set the doom localleader to "," because it's faster
-- Using the font [[https://sourcefoundry.org/hack/][Hack]]
 ** Other variables
+Some quality of life things and others that I couldn't really put in one category
+- Using line-numbers that are relative now instead of nothing.
+- Set org directory
+- Add libgen to search providers
 #+BEGIN_SRC elisp
 (setq completion-ignore-case t)
 (setq truncate-lines t)
@@ -32,10 +36,6 @@ Load the literate.el file to start parsing.
 (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
-Some quality of life things and others that I couldn't really put in one category
-- Using line-numbers that are relative now instead of nothing.
-- Set org directory
-- Add libgen to search providers
 * Package Config
 Config for or based heavily around specific packages that I find very important
 ** DAP
-- 
cgit v1.2.3-13-gbd6f