diff options
author | dx <aryadevchavali1@gmail.com> | 2020-07-15 15:30:00 +0100 |
---|---|---|
committer | dx <aryadevchavali1@gmail.com> | 2020-07-15 15:30:00 +0100 |
commit | 55e05588d2f56a2f5370fae75b53d263f28b9c1a (patch) | |
tree | a3bedc9436557c043d8b8c7cae29e59aa85f75f1 /Doom/.doom.d | |
parent | 3e7642cae16d0837d992e6b6ceef9c11e985acba (diff) | |
download | dotfiles-55e05588d2f56a2f5370fae75b53d263f28b9c1a.tar.gz dotfiles-55e05588d2f56a2f5370fae75b53d263f28b9c1a.tar.bz2 dotfiles-55e05588d2f56a2f5370fae75b53d263f28b9c1a.zip |
~molokai->monokai-classic, font options provided
Diffstat (limited to 'Doom/.doom.d')
-rw-r--r-- | Doom/.doom.d/org/config.org | 15 |
1 files changed, 11 insertions, 4 deletions
diff --git a/Doom/.doom.d/org/config.org b/Doom/.doom.d/org/config.org index 4833356..215004a 100644 --- a/Doom/.doom.d/org/config.org +++ b/Doom/.doom.d/org/config.org @@ -8,14 +8,21 @@ - Incredibly versatile tool in my inventory. * Initial setup ** Doom Variables -- Set the doom localleader to "," because it's faster -- Using the font [[https://sourcefoundry.org/hack/][Hack]] +- Set the doom local-leader to "SPC ," because it's faster +- Good font choices: + - Hack + - Source Code Pro/Variable + - IBM Plex Mono + - Space Mono + - Z003 if I'm feeling fancy (▀̿Ĺ̯▀̿̿) #+BEGIN_SRC elisp (after! core-keybinds (map! :leader "," nil) (setq doom-localleader-key "SPC ,") - (setq doom-theme 'doom-molokai) - (setq doom-font (font-spec :family "Hack" :size 15))) + (setq doom-themes-enable-italic nil) + (setq doom-themes-enable-bold t) + (setq doom-theme 'doom-monokai-classic) + (setq doom-font (font-spec :family "Source Code Pro" :size 15))) #+END_SRC ** Other variables Some quality of life things and others that I couldn't really put in one category |