Created
August 13, 2012 01:18
-
-
Save pcottle/3336177 to your computer and use it in GitHub Desktop.
My vimrc
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Cool. Just know that set ai == set autoindent! And other tricks!