Skip to content

Instantly share code, notes, and snippets.

@bishopandco
Created October 9, 2012 01:33
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 bishopandco/3856048 to your computer and use it in GitHub Desktop.
Save bishopandco/3856048 to your computer and use it in GitHub Desktop.
My vimrc
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