~rearranged some documenting content in config.org
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user