From 3a4f7a6b9967e92cbf4ad2c048751a95d26e17dc Mon Sep 17 00:00:00 2001 From: Guangqing Chen Date: Wed, 22 Feb 2023 16:34:49 +0800 Subject: [PATCH] feat: Enable adaption of colors from termguicolors (#143) --- autoload/indent_guides.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/autoload/indent_guides.vim b/autoload/indent_guides.vim index 23afb29..14ff342 100644 --- a/autoload/indent_guides.vim +++ b/autoload/indent_guides.vim @@ -100,7 +100,7 @@ endfunction " function! indent_guides#highlight_colors() abort if s:auto_colors - if has('gui_running') || has('nvim') + if has('gui_running') || has('nvim') || has('termguicolors') call indent_guides#gui_highlight_colors() else call indent_guides#basic_highlight_colors()