Created
October 9, 2012 01:33
-
-
Save bishopandco/3856048 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 " be iMproved | |
filetype off " required! | |
set rtp+=~/.vim/bundle/vundle/ | |
call vundle#rc() | |
Bundle 'gmarik/vundle' | |
Bundle 'tpope/vim-fugitive' | |
Bundle 'Lokaltog/vim-easymotion' | |
Bundle 'rstacruz/sparkup', {'rtp': 'vim/'} | |
Bundle 'tpope/vim-rails.git' | |
Bundle 'L9' | |
Bundle 'FuzzyFinder' | |
Bundle 'Lokaltog/vim-powerline' | |
Bundle 'git://git.wincent.com/command-t.git' | |
Bundle 'bundler' | |
Bundle 'fugitive.vim' | |
Bundle 'rails.vim' | |
Bundle 'rake.vim' | |
Bundle 'ruby.vim' | |
Bundle 'sickill/vim-sunburst' | |
Bundle 'scrooloose/nerdtree' | |
Bundle 'jistr/vim-nerdtree-tabs' | |
Bundle 'SuperTab' | |
Bundle 'jade.vim' | |
set guifont=Bitstream\ Vera\ Sans\ Mono\ for\ Powerline:h14 | |
syntax enable | |
filetype plugin indent on | |
colorscheme sunburst | |
set rnu | |
" Powerline stuff | |
let g:Powerline_symbols = 'fancy' | |
let mapleader = "," | |
set backspace=indent,eol,start | |
set nowrap | |
set laststatus=2 | |
set mouse=a | |
" http://stackoverflow.com/questions/677986/vim-copy-selection-to-os-x-clipboad | |
vmap <C-x> :!pbcopy<CR> | |
vmap <C-c> :w !pbcopy<CR><CR> | |
command Thtml :%!tidy -q -i -html | |
set incsearch | |
set hlsearch |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment