From e42c3a0ae84681c2471d5ca49ccad6ca4783e3c5 Mon Sep 17 00:00:00 2001 From: Akshay Hegde Date: Tue, 22 Dec 2020 21:51:57 -0800 Subject: [PATCH] Link Terminal highlight group to Normal --- colors/spacegray.vim | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/colors/spacegray.vim b/colors/spacegray.vim index 91d4133..2205e32 100644 --- a/colors/spacegray.vim +++ b/colors/spacegray.vim @@ -1,8 +1,9 @@ " SpaceGray.vim -- Vim colorscheme. " Maintainer: Akshay Hegde (github.com/ajh17) " Version: 1.4 -" A colorscheme loosely modeled after the spacegray theme for Xcode. -" This colorscheme is 256color and up only. +" Description: A colorscheme loosely modeled after the spacegray theme for Xcode. +" Note: This colorscheme is 256color and up only. +" Last Change: 2020 Dec 22 " Setup {{{1 hi clear @@ -48,10 +49,8 @@ let colors_name = 'spacegray' " Colorscheme definitions {{{1 if g:spacegray_low_contrast hi Normal ctermbg=235 ctermfg=250 guibg=#262626 guifg=#B3B8C4 cterm=NONE gui=NONE - hi Terminal ctermbg=235 ctermfg=250 guibg=#262626 guifg=#B3B8C4 cterm=NONE gui=NONE else hi Normal ctermbg=234 ctermfg=250 guibg=#111314 guifg=#B3B8C4 cterm=NONE gui=NONE - hi Terminal ctermbg=234 ctermfg=250 guibg=#111314 guifg=#B3B8C4 cterm=NONE gui=NONE endif if g:spacegray_use_italics @@ -188,6 +187,8 @@ hi link SpecialChar Special hi link SpecialComment Special hi link Tag Special +hi link Terminal Normal + " HTML hi link htmlEndTag htmlTagName hi link htmlLink Function