more changes

This commit is contained in:
Vasili Svirydau
2017-11-16 15:53:57 -08:00
parent bef25fc946
commit 3f39ff71f0
5 changed files with 50 additions and 36 deletions

View File

@@ -1,6 +1,18 @@
if has("autocmd")
filetype plugin indent on
augroup InvisibleCharsHighlight
au!
autocmd ColorScheme * :call ResetColors()
function! ResetColors()
"Invisible character colors
highlight NonText guifg=#4a4a59
highlight SpecialKey guifg=#4a4a59
endfun
augroup END
augroup CleanWhitespace
au!
autocmd BufWritePre * :call <SID>StripTrailingWhitespace()