Created
April 10, 2015 15:32
-
-
Save michaelstephens/c03bfd88bee2fb73aa11 to your computer and use it in GitHub Desktop.
My .vimrc
This file contains 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 nocompatible | |
filetype off | |
set rtp+=~/.vim/bundle/Vundle.vim | |
call vundle#begin() | |
execute pathogen#infect() | |
cmap w!! %sudo tee > /dev/null % | |
filetype plugin indent on | |
syntax on | |
" SETTINGS | |
:set tabstop=2 shiftwidth=2 expandtab | |
:set autoindent | |
:set cindent | |
:set number | |
" PLUGINS | |
Plugin 'gmarik/Vundle.vim' | |
Plugin 'tpope/vim-fugitive' | |
Plugin 'L9' | |
Plugin 'git://git.wincent.com/command-t.git' | |
Plugin 'rstacruz/sparkup', {'rtp': 'vim/'} | |
Plugin 'kchmck/vim-coffee-script' | |
Plugin 'tpope/vim-endwise' | |
Plugin 'jiangmiao/auto-pairs' | |
Plugin 'nathanaelkane/vim-indent-guides' | |
Plugin 'vim-ruby/vim-ruby' | |
Plugin 'tpope/vim-rails' | |
Plugin 'tpope/vim-bundler' | |
Plugin 'pangloss/vim-javascript' | |
Plugin 'terryma/vim-multiple-cursors' | |
Plugin 'bronson/vim-trailing-whitespace' | |
Plugin 'DeleteTrailingWhitespace' | |
Plugin 'kien/ctrlp.vim' | |
" Syntax Plugins | |
Plugin 'nanotech/jellybeans.vim' | |
Plugin 'tomasr/molokai' | |
Plugin 'slim-template/vim-slim' | |
Plugin 'leshill/vim-json'42 Plugin 'kien/rainbow_parentheses.vim' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment