Configure highlight guides
This commit is contained in:
parent
86d2ca5e39
commit
fb0172cb35
15
config.org
15
config.org
|
@ -208,6 +208,21 @@ Load the keychain environment variables into emacs
|
|||
(require 'keychain-environment)
|
||||
(keychain-refresh-environment)
|
||||
#+end_src
|
||||
** Configure indent guides
|
||||
First disable the automatic colors mode, and turn on responsive mode
|
||||
#+begin_src emacs-lisp
|
||||
(after! highlight-indent-guides
|
||||
(setq highlight-indent-guides-auto-enabled nil
|
||||
highlight-indent-guides-responsive 'stack))
|
||||
#+end_src
|
||||
|
||||
Now setup our theming
|
||||
#+begin_src emacs-lisp
|
||||
(custom-theme-set-faces! 'solarized-selenized-black
|
||||
'(highlight-indent-guides-character-face :foreground "#3b3b3b")
|
||||
'(highlight-indent-guides-top-character-face :foreground "#70b433")
|
||||
'(highlight-indent-guides-stack-character-face :foreground "#a580e2"))
|
||||
#+end_src
|
||||
* Basic Editing
|
||||
** Evil Mode
|
||||
Emacs is best vim, fite me
|
||||
|
|
Loading…
Reference in New Issue