VimPlugin: vim-plug

From wikinotes

Asynchronous vim plugin manager.

Documentation

github https://github.com/junegunn/vim-plug

Configuration

call plug#begin('~/.vim/bundle')

Plug 'https://github.com/vim-scripts/DrawIt'
Plug 'ssh://domain.com:/git/foo-plugin'
Plug 'https://domain.com/project', {'branch': 'custom-branch', 'do': ':SomeVimCommand'}
Plug '~/my-prototype-plugin'

call plug#end()

Usage

:PlugInstall  " install plugins
:PlugUpdate   " update plugins