Created
March 17, 2013 01:12
-
-
Save carlesso/5179100 to your computer and use it in GitHub Desktop.
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
" Pathogen Section | |
execute pathogen#infect() | |
syntax on | |
filetype plugin indent on | |
" /Pathogen | |
" Vundle | |
set nocompatible | |
filetype off | |
set rtp+=~/.vim/bundle/vundle/ | |
call vundle#rc() | |
Bundle 'gmarik/vundle' | |
Bundle 'scrooloose/nerdtree.git' | |
Bundle 'git://git.wincent.com/command-t.git' | |
Bundle 'tpope/vim-rails.git' | |
Bundle 'Raimondi/delimitMate' | |
Bundle 'majutsushi/tagbar' | |
Bundle 'mattn/zencoding-vim' | |
Bundle 'tomtom/tcomment_vim' | |
Bundle 'vim-ruby/vim-ruby' | |
Bundle 'kchmck/vim-coffee-script' | |
Bundle 'mattn/webapi-vim' | |
Bundle 'mattn/gist-vim' | |
call pathogen#helptags() | |
call pathogen#infect() | |
filetype plugin indent on | |
" /Vundle | |
" Add gist clip | |
let g:gist_clip_command = 'xclip -selection clipboard' | |
" /Gist Clip |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment