From 8a277be2bfa16df9c4f99046d0f5de134bb38b44 Mon Sep 17 00:00:00 2001 From: Konstantin Date: Mon, 6 Apr 2020 23:23:57 +0200 Subject: [PATCH] rather use !has('termguicolors') --- after/syntax/css/vim-coloresque.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/after/syntax/css/vim-coloresque.vim b/after/syntax/css/vim-coloresque.vim index 3ee3549..978f580 100644 --- a/after/syntax/css/vim-coloresque.vim +++ b/after/syntax/css/vim-coloresque.vim @@ -386,7 +386,7 @@ if has('gui_running') || &t_Co==256 endfor endif - if ! has('gui_running') && &termguicolors == 0 + if !has('gui_running') && !has('termguicolors') let s:black = 0 let s:white = 15