Skip to content

Instantly share code, notes, and snippets.

@pcottle
Created August 13, 2012 01:18
Show Gist options
  • Save pcottle/3336177 to your computer and use it in GitHub Desktop.
Save pcottle/3336177 to your computer and use it in GitHub Desktop.
My vimrc
set incsearch
set wildmenu
set ruler
set ignorecase
set smartcase
set noerrorbells
set modeline
set ls=2
set cursorline
imap ii <Esc>
try
set undodir=~/.vim_runtime/undodir
set undofile
catch
endtry
set expandtab
set shiftwidth=2
set tabstop=2
set smarttab
set ai
set si
set wrap
set nocompatible
syntax on
set whichwrap=b,s,h,l,<,>,~,[,]
set infercase
set showmatch
call pathogen#infect()
" remember to change comment color to blue
color jellybeans
" plugins: Syntastic PreciseJump vim-surround
@grapeot
Copy link

grapeot commented Aug 13, 2012

Cool. Just know that set ai == set autoindent! And other tricks!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment