Created
December 10, 2013 19:32
-
-
Save anonymous/7896689 to your computer and use it in GitHub Desktop.
This file contains hidden or 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 | |
| " Ruby, Rails, Rake... | |
| Bundle "astashov/vim-ruby-debugger" | |
| Bundle "ecomba/vim-ruby-refactoring" | |
| Bundle "skwp/vim-ruby-conque" | |
| Bundle "tpope/vim-rails.git" | |
| Bundle "tpope/vim-rake.git" | |
| Bundle "tpope/vim-rvm.git" | |
| Bundle "vim-ruby/vim-ruby.git" | |
| Bundle "vim-scripts/Specky.git" | |
| Bundle "ck3g/vim-change-hash-syntax" | |
| " Other languages | |
| Bundle "briancollins/vim-jst" | |
| Bundle "pangloss/vim-javascript" | |
| Bundle "rodjek/vim-puppet" | |
| " Html, Xml, Css, Markdown... | |
| Bundle "claco/jasmine.vim" | |
| Bundle "digitaltoad/vim-jade.git" | |
| Bundle "groenewege/vim-less.git" | |
| Bundle "itspriddle/vim-jquery.git" | |
| Bundle "jtratner/vim-flavored-markdown.git" | |
| Bundle "kchmck/vim-coffee-script" | |
| Bundle "nelstrom/vim-markdown-preview" | |
| Bundle "skwp/vim-html-escape" | |
| Bundle "slim-template/vim-slim.git" | |
| Bundle "timcharper/textile.vim.git" | |
| Bundle "tpope/vim-haml" | |
| Bundle "wavded/vim-stylus" | |
| " Git related... | |
| Bundle "gregsexton/gitv" | |
| Bundle "mattn/gist-vim" | |
| Bundle "skwp/vim-git-grep-rails-partial" | |
| Bundle "tjennings/git-grep-vim" | |
| Bundle "tpope/vim-fugitive" | |
| Bundle "tpope/vim-git" | |
| " General text editing improvements... | |
| Bundle "AndrewRadev/splitjoin.vim" | |
| Bundle "Raimondi/delimitMate" | |
| Bundle "Shougo/neocomplcache.git" | |
| Bundle "briandoll/change-inside-surroundings.vim.git" | |
| Bundle "garbas/vim-snipmate.git" | |
| Bundle "godlygeek/tabular" | |
| Bundle "honza/vim-snippets" | |
| Bundle "nelstrom/vim-visual-star-search" | |
| Bundle "skwp/vim-easymotion" | |
| Bundle "tomtom/tcomment_vim.git" | |
| Bundle "tpope/vim-bundler" | |
| Bundle "vim-scripts/IndexedSearch" | |
| Bundle "vim-scripts/camelcasemotion.git" | |
| Bundle "vim-scripts/matchit.zip.git" | |
| Bundle "terryma/vim-multiple-cursors" | |
| " General vim improvements | |
| Bundle "MarcWeber/vim-addon-mw-utils.git" | |
| Bundle "bogado/file-line.git" | |
| Bundle "jistr/vim-nerdtree-tabs.git" | |
| Bundle "kien/ctrlp.vim" | |
| Bundle "majutsushi/tagbar.git" | |
| Bundle "mattn/webapi-vim.git" | |
| Bundle "rking/ag.vim" | |
| Bundle "scrooloose/nerdtree.git" | |
| Bundle "scrooloose/syntastic.git" | |
| Bundle "sjl/gundo.vim" | |
| Bundle "skwp/YankRing.vim" | |
| Bundle "skwp/greplace.vim" | |
| Bundle "skwp/vim-conque" | |
| Bundle "tomtom/tlib_vim.git" | |
| Bundle "tpope/vim-abolish" | |
| Bundle "tpope/vim-endwise.git" | |
| Bundle "tpope/vim-ragtag" | |
| Bundle "tpope/vim-repeat.git" | |
| Bundle "tpope/vim-surround.git" | |
| Bundle "tpope/vim-unimpaired" | |
| Bundle "vim-scripts/AnsiEsc.vim.git" | |
| Bundle "vim-scripts/AutoTag.git" | |
| Bundle "vim-scripts/lastpos.vim" | |
| Bundle "vim-scripts/sudo.vim" | |
| Bundle "xsunsmile/showmarks.git" | |
| Bundle "terryma/vim-multiple-cursors" | |
| "vim-misc is required for vim-session | |
| Bundle "xolox/vim-misc" | |
| Bundle "xolox/vim-session" | |
| Bundle "jby/tmux.vim.git" | |
| Bundle "jnwhiteh/vim-golang" | |
| Bundle "wikitopian/hardmode" | |
| " Text objects | |
| Bundle "austintaylor/vim-indentobject" | |
| Bundle "bootleq/vim-textobj-rubysymbol" | |
| Bundle "coderifous/textobj-word-column.vim" | |
| Bundle "kana/vim-textobj-datetime" | |
| Bundle "kana/vim-textobj-entire" | |
| Bundle "kana/vim-textobj-function" | |
| Bundle "kana/vim-textobj-user" | |
| Bundle "lucapette/vim-textobj-underscore" | |
| Bundle "nathanaelkane/vim-indent-guides" | |
| Bundle "nelstrom/vim-textobj-rubyblock" | |
| Bundle "thinca/vim-textobj-function-javascript" | |
| Bundle "vim-scripts/argtextobj.vim" | |
| " Cosmetics, color scheme, Powerline... | |
| Bundle "chrisbra/color_highlight.git" | |
| Bundle "bling/vim-airline.git" | |
| Bundle "vim-scripts/TagHighlight.git" | |
| Bundle "bogado/file-line.git" | |
| Bundle "flazz/vim-colorschemes.git" | |
| " 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