Adding this page because I can’t stand having to reset my vimrc when re-installing… I always seem to lose it.

set scrolloff=3 		"space between cursor and terminal bottom
set nocompatible 		"VIM over Vi
set undolevels=1500 	"how many times the user can undo
set sidescrolloff=3 	"space between cursor and terminal side
set tabstop=2 			"tab width
set shiftwidth=2
set expandtab
set smarttab
set bs=2 " Allow backspace to back over everything in insert mode including newlines
set cindent
set formatoptions=rocql
set comments=sr:/*,mb:\ *,el:\ */,://,b:#,:%,:XCOMM,n:>,fb:-
set cinoptions=g0:0t0c2C1(0f0l1
set nosmartindent autoindent
syntax on
set nowrap 				"no wrapping
set number 				"line number
set nobackup 			"no default backup

map  G 			" brings vim to the end of the file
map  gg 			" brings vim to the begining of file

colorscheme evening
set gfn=Bitstream\ Vera\ Sans\ Mono\ 10

" make tab in v mode ident code
vmap  >gv
vmap   :tabnew
map  :tabnext
map  :tabprevious
map  :tabclose
imap  :tabnext
imap  :tabprevious
imap  :tabclose
imap  :tabnew
vmap  :tabnext
vmap  :tabprevious
vmap  :tabclose
vmap  :tabnew

filetype indent on
filetype on
filetype plugin on