Skip to content

Instantly share code, notes, and snippets.

@codekipple
Created May 30, 2012 19:54
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 codekipple/2838564 to your computer and use it in GitHub Desktop.
Save codekipple/2838564 to your computer and use it in GitHub Desktop.
.vimrc
" Set syntax on
syntax on
" Indent automatically depending on filetype
filetype indent on
set autoindent
" Case insensitive search
set ic
" Higlhight search
set hls
" Wrap text instead of being on one line
set lbr
" insert spaces on tab press
set expandtab
" number of spaces to use on tab press
set tabstop=2
" number of spaces to use for indentation
set shiftwidth=2
" user f2 when pasting text from external applications to stop indentation mess
set pastetoggle=<F2>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment