vimrc
Here is my vimrc. Pretty simplistic.
set nocompatible " We're running Vim, not Vi!
filetype on " Enable fieltype detection
"filetype indent on " Enable filetype-specific indenting
"filetype plugin on " Enable filetype-specific plugins
"searching related"
set ignorecase "Ignore case in searches --opposite is: set noic
"set incsearch "highlight word while searching
set nohls "does not highlight searches
set smartcase "unless they contain upper-case letters
"indexting related"
"set noexpandtab "Don't want tabs replaced with spaces
set expandtab
set ts=3 "tab stop
set softtabstop=3 "use the same value as shiftwidth
set shiftwidth=3 "use 4 spaces when using autoindent/cindent
set smarttab "smart tabs??
"dont auto unindent # comments
" note: ^H should be an actual control+H
inoremap # X^H#
set autoindent "Autoindentation
set smartindent
"set nosi "turn off smart indenting
set wrap "wrap
set ww=<,>,[,] "allows you to hit left at the start of a line and go to end of line above
"display"
"set title "Put title in title bar
syntax on "Enable syntax highlighting
set showmatch "show matching parenthesis,brackets,etc
set showcmd "show current uncompleted command
set ttyfast "Smoother changes
"misc"
"set noerrorbells "no beeps
set visualbell "visual bell instead of beeping
set nobackup "no backup copies..
set nomodeline "don't have files trying to override this .vimrc
set nostartofline "don't jump cursor around, stay in current column
set backspace=2 " Allow backspace to back over lines
set shell=bash
"set number "show line numbers
"Set some colors"
"highlight LineNr term=NONE
"hi Normal ctermfg=black ctermbg=white
"hi Comment ctermfg=lightgreen
"hi Function ctermfg=lightred
"hi Statement ctermfg=lightblue
"hi Include ctermfg=lightblue
"hi htmlSpecialChar ctermfg=yellow
"hi Define ctermfg=lightblue
"hi Constant ctermfg=magenta
"hi Special ctermfg=white
"hi Type ctermfg=lightblue