vimrc 459 B

123456789101112
  1. set tabstop=4
  2. set shiftwidth=4
  3. set expandtab
  4. set list
  5. "flag problematic whitespace (trailing and spaces before tabs)
  6. "Note you get the same by doing let c_space_errors=1 but
  7. "this rule really applies to everything.
  8. highlight RedundantSpaces term=standout ctermbg=red guibg=red
  9. match RedundantSpaces /\s\+$\| \+\ze\t/ "\ze sets end of match so only spaces highlighted
  10. "use :set list! to toggle visible whitespace on/off
  11. set listchars=tab:>-,trail:.,extends:>