From c66cfe56579d33d9370b9f44f004d712c413e505 Mon Sep 17 00:00:00 2001 From: 10sr <8slashes+git@gmail.com> Date: Tue, 22 Aug 2017 15:08:27 +0900 Subject: [PATCH] Set term-color faces to default --- emacs.el | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/emacs.el b/emacs.el index 5e94b51..2bc1454 100644 --- a/emacs.el +++ b/emacs.el @@ -650,6 +650,15 @@ found, otherwise returns nil." :inherit 'highlight) (set-face-foreground 'mode-line-inactive "white") + + (face-spec-set 'term-color-black (face-default-spec 'term-color-black)) + (face-spec-set 'term-color-red (face-default-spec 'term-color-red)) + (face-spec-set 'term-color-green (face-default-spec 'term-color-green)) + (face-spec-set 'term-color-yellow (face-default-spec 'term-color-yellow)) + (face-spec-set 'term-color-blue (face-default-spec 'term-color-blue)) + (face-spec-set 'term-color-magenta (face-default-spec 'term-color-magenta)) + (face-spec-set 'term-color-cyan (face-default-spec 'term-color-cyan)) + (face-spec-set 'term-color-white (face-default-spec 'term-color-white)) ) ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;