Skip to content

Instantly share code, notes, and snippets.

@erikeldridge
Created December 24, 2010 08:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save erikeldridge/754022 to your computer and use it in GitHub Desktop.
Save erikeldridge/754022 to your computer and use it in GitHub Desktop.
my .vimrc file
" use 4-space soft tabs
" http://vim.wikia.com/wiki/Indenting_source_code
set expandtab
set shiftwidth=4
set softtabstop=4
" turn on auto-indent
" Note: to auto-indent a whole file, run: gg=G
set autoindent
" syntax highlighting
:syntax on
" show line numbers
" Note: to disable, run: set nonumber
:set number
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment