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

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