diff --git a/colors/NeoSolarized.vim b/colors/NeoSolarized.vim index ec7de80..e07a579 100644 --- a/colors/NeoSolarized.vim +++ b/colors/NeoSolarized.vim @@ -917,7 +917,9 @@ endif " mode (detected with the script scope s:vmode variable). It also allows for " other potential terminal customizations that might make gui mode suboptimal. " -autocmd GUIEnter * if (has('gui_running')) | exe "colorscheme " . g:colors_name | endif +if !has('gui_running') + autocmd GUIEnter * if (has('gui_running')) | exe "colorscheme " . g:colors_name | endif +endif "}}} " License "{{{