summaryrefslogtreecommitdiff
path: root/plugin/trailing-spaces.vim
blob: bea3f7a69adfac9812b77c18ef03eeeec60b8a88 (plain)
1
2
3
4
5
6
" trailing-spaces.vim
" Trailing whitespaces highlighting

highlight ExtraWhitespace ctermbg=darkred
" Show trailing whitepace and spaces before a tab:
autocmd Syntax * syn match ExtraWhitespace /\s\+$\| \+\ze\t/ containedin=ALL