Merge pull request #45 from jazzsewera/master

Fixed issue #36 where colors will not display in color-capable terminals
This commit is contained in:
Konstantin
2020-04-06 23:50:12 +02:00
committed by GitHub

View File

@@ -348,7 +348,7 @@ if has('gui_running') || &t_Co==256
endfor
endif
if ! has("termguicolors")
if !has('gui_running') && !has("termguicolors")
let s:black = 0
let s:white = 15
@@ -595,4 +595,4 @@ if has('gui_running') || &t_Co==256
autocmd ColorScheme <buffer> silent call s:VimCssInit(1)
autocmd BufEnter <buffer> silent call s:VimCssInit(1)
augroup END
endif
endif