Minor syntax changes on Vim and Neovim configs

This commit is contained in:
Dionisio E Alonso 2019-04-04 13:13:56 -03:00
parent bc0f1da598
commit 2832822492
2 changed files with 2 additions and 2 deletions

View File

@ -44,7 +44,7 @@ endif
packadd onedark.vim
" onedark.vim override: Don't set a background color when running in a
" terminal; just use the terminal's background color
if (has('autocmd') && !has('gui_running')
if has('autocmd') && !has('gui_running')
augroup colorset
autocmd!
autocmd ColorScheme * silent!

View File

@ -43,7 +43,7 @@ endif
packadd onedark.vim
" onedark.vim override: Don't set a background color when running in a
" terminal; just use the terminal's background color
if (has('autocmd') && !has('gui_running'))
if has('autocmd') && !has('gui_running')
augroup colorset
autocmd!
autocmd ColorScheme * silent!