better-whitespace.vim 448 B

1234567891011121314
  1. " change trailing whitespace color
  2. let g:better_whitespace_ctermcolor='166'
  3. " no autostrip on save
  4. let g:strip_whitespace_on_save = 0
  5. " soft (instead of hard) disable warning on current line
  6. let g:current_line_whitespace_disabled_soft=1
  7. " disable confirmation prompt
  8. let g:strip_whitespace_confirm=0
  9. " blacklisted filetypes
  10. let g:better_whitespace_filetypes_blacklist=['diff', 'git', 'gitcommit', 'unite', 'qf', 'help', 'markdown', 'fugitive']