Guest User

Untitled

a guest
Jan 19th, 2018
105
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.61 KB | None | 0 0
  1. set nocompatible
  2. set backspace=eol,start,indent
  3. set fileformats=unix,dos,mac
  4.  
  5. " Search
  6. set ignorecase
  7. set smartcase
  8. "set hlsearch
  9. set incsearch
  10.  
  11. " Block Matching
  12. set showmatch
  13. set mat=2
  14. set autoindent
  15.  
  16. " Error Sounds
  17. set noerrorbells
  18. set novisualbell
  19. set t_vb=
  20. set tm=500
  21.  
  22. " UI
  23. set guioptions-=m
  24. set guioptions-=T
  25. set guioptions+=b
  26. set nowrap
  27. set ruler
  28. set number
  29. colorscheme slate
  30. syntax enable
  31.  
  32. " Backup
  33. set nobackup
  34. set nowb
  35. set noswapfile
  36.  
  37. set tabstop=4
  38. set shiftwidth=4
  39. set softtabstop=4
  40. set noexpandtab
  41. set smarttab
  42. set lbr
  43. set tw=500
  44. set ai "Auto indent
  45. set si "Smart indet
  46. set bs=2
  47.  
  48. " Windows
  49. set guifont=consolas:h10
Add Comment
Please, Sign In to add comment