View on GitHub

memo

vim-plug

vim-plug

Minimalist Vim Plugin Manager.

Configuration

Install

if empty(glob("~/.vim/autoload/plug.vim"))
    execute '!curl -fLo ~/.vim/autoload/plug.vim https://raw.github.com/junegunn/vim-plug/master/plug.vim'
endif

Lazy load by file type.

Plug 'plasticboy/vim-markdown', { 'for': 'markdown' }

Lazy load by Rename command.

Plug 'AlexJF/rename.vim', { 'on': 'Rename' }

Tips

Pallalel install

Reference