diff options
author | dx <aryadevchavali1@gmail.com> | 2020-07-18 00:55:46 +0100 |
---|---|---|
committer | dx <aryadevchavali1@gmail.com> | 2020-07-18 00:55:46 +0100 |
commit | 9ccc76893fcf52504e8e5a8036c6afd71f93e261 (patch) | |
tree | bd729276b6228655b776da75039dfbab1bff79ed /Doom/.config/doom | |
parent | 1cc05b4caf218e4957d9aef912da978688ea3ab6 (diff) | |
download | dotfiles-9ccc76893fcf52504e8e5a8036c6afd71f93e261.tar.gz dotfiles-9ccc76893fcf52504e8e5a8036c6afd71f93e261.tar.bz2 dotfiles-9ccc76893fcf52504e8e5a8036c6afd71f93e261.zip |
~put localleader to bindings module
Diffstat (limited to 'Doom/.config/doom')
-rw-r--r-- | Doom/.config/doom/modules/private/bindings/README.org | 3 | ||||
-rw-r--r-- | Doom/.config/doom/org/config.org | 10 |
2 files changed, 7 insertions, 6 deletions
diff --git a/Doom/.config/doom/modules/private/bindings/README.org b/Doom/.config/doom/modules/private/bindings/README.org index 90d1b55..963ce45 100644 --- a/Doom/.config/doom/modules/private/bindings/README.org +++ b/Doom/.config/doom/modules/private/bindings/README.org @@ -8,8 +8,11 @@ To compile, simply execute the source code block below (org-babel-tangle-file "README.org" "config.el") #+END_SRC * Initial +Set the localleader to "SPC ," #+BEGIN_SRC elisp ;;; private/bindings/config.el -*- lexical-binding: t; -*- +(setq doom-leader-key "SPC") +(setq doom-localleader-key "SPC ,") #+END_SRC * Leader Bindings for the leader map diff --git a/Doom/.config/doom/org/config.org b/Doom/.config/doom/org/config.org index 93b20cb..e25c433 100644 --- a/Doom/.config/doom/org/config.org +++ b/Doom/.config/doom/org/config.org @@ -8,7 +8,6 @@ - Incredibly versatile tool in my inventory. * Initial setup ** Doom Variables -- Set the doom local-leader to "SPC ," because it's faster - Good font choices: - Hack - Source Code Pro/Variable @@ -18,11 +17,10 @@ #+BEGIN_SRC elisp (after! core-keybinds (map! :leader "," nil) - (setq doom-localleader-key "SPC ,") - (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))) + (setq doom-themes-enable-italic nil + doom-themes-enable-bold t + doom-theme 'doom-monokai-classic + 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 |