better-whitespace.vim 499 B

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