[Emacs] Copy faces from highlight-indentation for highlight-indentation-guides

This commit is contained in:
Ivan Malison 2016-12-28 23:29:23 -08:00
parent 705c11897b
commit 104776cb97
No known key found for this signature in database
GPG Key ID: 62530EFBE99DC2F8

View File

@ -4758,9 +4758,17 @@ load-theme hook (See the heading below).
(when (fboundp 'powerline-reset) (when (fboundp 'powerline-reset)
(powerline-reset)) (powerline-reset))
(set-face-background 'fringe (face-background 'default)) (set-face-background 'fringe (face-background 'default))
;; Copy faces from highlight-indentation for highlight-indentation-guides
(set-face-background 'highlight-indent-guides-even-face
(face-background 'highlight-indentation-face))
(set-face-background 'highlight-indent-guides-odd-face
(face-background
'highlight-indentation-current-column-face))
(imalison:restore-ansi-term-color-vector)) (imalison:restore-ansi-term-color-vector))
(advice-add 'load-theme :after #'imalison:after-load-theme) (advice-add 'load-theme :after 'imalison:after-load-theme)
#+END_SRC #+END_SRC
** Frame Initialization ** Frame Initialization
#+BEGIN_SRC emacs-lisp #+BEGIN_SRC emacs-lisp