Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  • 4-spaces, no tabs
    Code Block
    set et ts=4 sw=4
    
  • some more sanity
    Code Block
    set smarttab cindent cin0=(0
    
  • TODO: make trailing whitespace stand out
    • You could do this, but it's annoying while you're typing:
      Code Block
      
      syntax match Error "\s\+$"
      syntax match Error "\t"
      
    • This can be configured to be less intrusive:
      Code Block
      
      set list