Created
December 4, 2013 14:18
-
-
Save n0nick/7788121 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
" ======================================== | |
" Vim plugin configuration | |
" ======================================== | |
" | |
" This file contains the list of plugin installed using vundle plugin manager. | |
" Once you've updated the list of plugin, you can run vundle update by issuing | |
" the command :BundleInstall from within vim or directly invoking it from the | |
" command line with the following syntax: | |
" vim --noplugin -u vim/vundles.vim -N "+set hidden" "+syntax on" +BundleClean! +BundleInstall +qall | |
" Filetype off is required by vundle | |
filetype off | |
set rtp+=~/.vim/bundle/vundle/ | |
call vundle#rc() | |
" let Vundle manage Vundle (required) | |
Bundle "gmarik/vundle" | |
" All your bundles here | |
Bundle "Raimondi/delimitMate" | |
Bundle "tomtom/tcomment_vim.git" | |
Bundle "scrooloose/nerdtree.git" | |
"Bundle "jistr/vim-nerdtree-tabs.git" | |
"Bundle "vim-scripts/AutoTag.git" | |
"Bundle "vim-scripts/IndexedSearch" | |
Bundle "scrooloose/syntastic.git" | |
Bundle "tpope/vim-repeat.git" | |
Bundle "tpope/vim-surround.git" | |
"Bundle "tpope/vim-rails.git" | |
"Bundle "vim-ruby/vim-ruby.git" | |
"Bundle "tpope/vim-endwise.git" | |
Bundle "Shougo/neocomplcache.git" | |
Bundle "skwp/vim-colors-solarized" | |
Bundle "tpope/vim-fugitive" | |
Bundle "tpope/vim-git" | |
" Bundle "godlygeek/tabular" | |
Bundle "vim-easy-align" | |
Bundle "tpope/vim-haml" | |
Bundle "kchmck/vim-coffee-script" | |
Bundle "kien/ctrlp.vim" | |
"Bundle "gregsexton/gitv" | |
Bundle "mattn/webapi-vim.git" | |
Bundle "mattn/gist-vim" | |
"Bundle "astashov/vim-ruby-debugger" "TODO | |
Bundle "Lokaltog/powerline", {'rtp': 'powerline/bindings/vim'} | |
Bundle "pangloss/vim-javascript" | |
Bundle "tpope/vim-abolish" | |
Bundle "airblade/vim-gitgutter.git" | |
"Bundle "nelstrom/vim-visual-star-search" | |
Bundle "duff/vim-bufonly" | |
Bundle "aliva/vim-fish" | |
" Customization | |
" The plugins listed in ~/.vim/.vundles.local will be added here to | |
" allow the user to add vim plugins to yadr without the need for a fork. | |
if filereadable(expand("~/.yadr/vim/.vundles.local")) | |
source ~/.yadr/vim/.vundles.local | |
endif | |
"Filetype plugin indent on is required by vundle | |
filetype plugin indent on |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment