Link Terminal highlight group to Normal

This commit is contained in:
Akshay Hegde 2020-12-22 21:51:57 -08:00
parent 1bbfcbc3a5
commit e42c3a0ae8
No known key found for this signature in database
GPG Key ID: BA511FD61E9C5108
1 changed files with 5 additions and 4 deletions

View File

@ -1,8 +1,9 @@
" SpaceGray.vim -- Vim colorscheme. " SpaceGray.vim -- Vim colorscheme.
" Maintainer: Akshay Hegde (github.com/ajh17) " Maintainer: Akshay Hegde (github.com/ajh17)
" Version: 1.4 " Version: 1.4
" A colorscheme loosely modeled after the spacegray theme for Xcode. " Description: A colorscheme loosely modeled after the spacegray theme for Xcode.
" This colorscheme is 256color and up only. " Note: This colorscheme is 256color and up only.
" Last Change: 2020 Dec 22
" Setup {{{1 " Setup {{{1
hi clear hi clear
@ -48,10 +49,8 @@ let colors_name = 'spacegray'
" Colorscheme definitions {{{1 " Colorscheme definitions {{{1
if g:spacegray_low_contrast if g:spacegray_low_contrast
hi Normal ctermbg=235 ctermfg=250 guibg=#262626 guifg=#B3B8C4 cterm=NONE gui=NONE 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 else
hi Normal ctermbg=234 ctermfg=250 guibg=#111314 guifg=#B3B8C4 cterm=NONE gui=NONE 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 endif
if g:spacegray_use_italics if g:spacegray_use_italics
@ -188,6 +187,8 @@ hi link SpecialChar Special
hi link SpecialComment Special hi link SpecialComment Special
hi link Tag Special hi link Tag Special
hi link Terminal Normal
" HTML " HTML
hi link htmlEndTag htmlTagName hi link htmlEndTag htmlTagName
hi link htmlLink Function hi link htmlLink Function