~rearranged some documenting content in config.org

This commit is contained in:
dx
2020-05-02 07:15:27 +01:00
parent 548072ba7e
commit a62791091e

View File

@@ -7,23 +7,27 @@
- This is my [[https://github.com/hlissner/doom-emacs][Doom Emacs]] configuration. - This is my [[https://github.com/hlissner/doom-emacs][Doom Emacs]] configuration.
- Use it for most of my code editing and development needs. - Use it for most of my code editing and development needs.
- Incredibly versatile tool in my inventory. - Incredibly versatile tool in my inventory.
* Variables and Bootstrap config * Init
Bootstrap via literate and setting up basic variables. Initialize literate config and setup some basic variables
** Bootstrap ** Bootstrap
Load the literate.el file to start parsing. Load the literate.el file to start parsing.
#+BEGIN_SRC elisp #+BEGIN_SRC elisp
(load (expand-file-name (concat doom-private-dir "bin/literate.el"))) (load (expand-file-name (concat doom-private-dir "bin/literate.el")))
#+END_SRC #+END_SRC
** Doom Variables ** Doom Variables
- Set the doom localleader to "," because it's faster
- Using the font [[https://sourcefoundry.org/hack/][Hack]]
#+BEGIN_SRC elisp #+BEGIN_SRC elisp
(after! core-keybinds (after! core-keybinds
(setq doom-localleader-key ",") (setq doom-localleader-key ",")
(setq doom-theme 'doom-molokai) (setq doom-theme 'doom-molokai)
(setq doom-font (font-spec :family "Hack" :size 17))) (setq doom-font (font-spec :family "Hack" :size 17)))
#+END_SRC #+END_SRC
- Set the doom localleader to "," because it's faster
- Using the font [[https://sourcefoundry.org/hack/][Hack]]
** Other variables ** 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 #+BEGIN_SRC elisp
(setq completion-ignore-case t) (setq completion-ignore-case t)
(setq truncate-lines t) (setq truncate-lines t)
@@ -32,10 +36,6 @@ Load the literate.el file to start parsing.
(setq-default frame-title-format '("%b - Emacs")) (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=) (cl-pushnew '("Libgen" "http://gen.lib.rus.ec/search.php?req=%s") +lookup-provider-url-alist :key #'car :test 'string=)
#+END_SRC #+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 * Package Config
Config for or based heavily around specific packages that I find very important Config for or based heavily around specific packages that I find very important
** DAP ** DAP