I will go through vim-plug and tell you why it's the best plugin manager for Vim in the world.
Vim plug
View Slide
Who Am I@wikimatzeRunning vimberlin.deWriting padrinobook.com
The proeasy setupconcise, intuitive syntaxparallel installation/updateon-demand loading
Installationcurl -fLo ~/.vim/autoload/plug.vim --create-dirs \https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim
Example vimrccall plug#begin('~/.vim/plugged')Plug 'junegunn/seoul256.vim'Plug 'junegunn/vim-easy-align'call plug#end()
On-demand loadingPlug 'Eckankar/vim-latex-folding', { 'for': 'tex' }Plug 'othree/html5-syntax.vim', { 'for': ['html', 'md'] }Plug 'scrooloose/nerdtree', { 'on': 'NERDTreeToggle' }
Using git URL and tagPlug 'https://github.com/Shougo/neosnippet.vim'Plug 'bling/vim-airline' , 'v0.7'Plug 'wikimatze/tocdown', { 'tag': 'v.1.0.1', 'on': 'TocdownToggle' }
Post-update hookPlug 'Shougo/vimproc.vim', { 'do': 'make' }
Commands IPlugInstall|PlugUpdate[name ...] … install/updatepluginsPlugDiff … see theupdated changes from theprevious PlugUpdate
Commands IIPlugClean[!] … removeunused directories (! withoutprompt)PlugUpgrade … upgradevim-plug itself
Commands IIIPlugStatus … Checkthe status of plugins(loaded?)PlugSnapshot [outputpath] … generate script forrestoring the currentsnapshot of the plugins
Book Clubhttps://www.flickr.com/photos/infowidget/2319637289
The VimL Primerhttps://pragprog.com/book/bkviml/the-viml-primer
ThanksFor being here and makeVimberlin happen!