Advertisement
Guest User

Untitled

a guest
Mar 25th, 2011
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.88 KB | None | 0 0
  1. " Sets how many lines of history VIM has to remember
  2. set history=700
  3.  
  4. " Enable filetype plugin
  5. filetype plugin on
  6. filetype indent on
  7.  
  8. " Set to auto read when a file is changed from the outside
  9. set autoread
  10.  
  11. " Set 7 lines to the curors - when moving vertical..
  12. set so=7
  13.  
  14. set wildmenu "Turn on WiLd menu
  15.  
  16. " Set backspace config
  17. set backspace=eol,start,indent
  18. set whichwrap+=<,>,h,l
  19.  
  20. set ignorecase "Ignore case when searching
  21. set smartcase
  22.  
  23. set hlsearch "Highlight search things
  24.  
  25. set incsearch "Make search act like search in modern browsers
  26.  
  27. set showmatch "Show matching bracets when text indicator is over them
  28. set mat=2 "How many tenths of a second to blink
  29.  
  30. syntax enable "Enable syntax highlight
  31.  
  32. set expandtab
  33. set shiftwidth=4 "Set yours here
  34. set tabstop=4
  35. set smarttab
  36.  
  37. set lbr
  38. set tw=500
  39.  
  40. set ai "Auto indent
  41. set si "Smart indet
  42. set wrap "Wrap lines
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement