+load (after! macros) to org and core-keybinds

Load everything lazily!!!
Apparently not even the core stuff is needed all the time, meaning you
could lazy load these critical things like the core keybinds, or the org
directory. Furthermore, during the load process you can leave it till last.
This commit is contained in:
oreodave
2019-11-18 22:59:07 +00:00
parent d80a3b075e
commit 2ee914cdfa

View File

@@ -9,9 +9,10 @@ possible. It is currently my main editor overall, literally overtaking my life.
Setting up variables and basic stuff that doesn't require a lot of work.
** Doom Variables
#+BEGIN_SRC elisp
(setq doom-localleader-key ",")
(setq doom-font (font-spec :family "Hack" :size 19))
(setq doom-theme 'doom-gruvbox)
(after! core-keybinds
(setq doom-localleader-key ",")
(setq doom-font (font-spec :family "Hack" :size 19))
(setq doom-theme 'doom-gruvbox))
#+END_SRC
- Set the doom localleader to "," because it's faster
- Using the font [[https://sourcefoundry.org/hack/][Hack]] with Fira code ligatures
@@ -37,7 +38,8 @@ Some quality of life things that I couldn't really put in one category
- I like battery mode
** Org directory
#+BEGIN_SRC elisp
(setq org-directory "~/Text")
(after! org
(setq org-directory "~/Text"))
#+END_SRC
Set the org directory to Text.
** Search providers