From 040356a43fd77b3b9e0bd341293cd0393dce3f7a Mon Sep 17 00:00:00 2001 From: Simon Watts Date: Wed, 25 Apr 2018 23:13:55 +0100 Subject: [PATCH] Always set background colour when running gui. --- colors/dracula.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/colors/dracula.vim b/colors/dracula.vim index 74fbe18..e1d3759 100644 --- a/colors/dracula.vim +++ b/colors/dracula.vim @@ -225,7 +225,7 @@ call s:h('DraculaDiffDelete', s:red, s:bgdark) " Core: {{{2 set background=dark -call s:h('Normal', s:fg, g:dracula_colorterm == 1 ? s:bg : s:none) +call s:h('Normal', s:fg, ( (g:dracula_colorterm == 1) || has("gui_running") ) ? s:bg : s:none) hi! link Visual DraculaSelection hi! link VisualNOS Visual