My VimRc (~/.vimrc)

I am partial to Vim now and again… secret love affair between the editors ;)

  1. colorscheme desert
  2. set number
  3.  
  4. " Intuitive backspacing in insert mode
  5. set backspace=indent,eol,start
  6.  
  7. " File-type highlighting and configuration.
  8. " Run :filetype (without args) to see what you may have
  9. " to turn on yourself, or just set them all to be sure.
  10. syntax on
  11. filetype on
  12. filetype plugin on
  13. filetype indent on
  14.  
  15. syn on           " syntax highlighting
  16. set expandtab    " use spaces instead of tabs
  17. set shiftwidth=2 " default indentation is 2 spaces
  18.