Getting Started #
Add a vim-plug section to your ~/.vimrc (or init.vim for Neovim)
- Begin the section with call plug#begin()
- List the plugins with Plugcommands
- End the section with call plug#end()
For example,
call plug#begin()
" List your plugins here
Plug 'tpope/vim-sensible'
call plug#end()
Reload the file or restart Vim, then you can,
- :PlugInstallto install the plugins
- :PlugUpdateto install or update the plugins
- :PlugDiffto review the changes from the last update
- :PlugCleanto remove plugins no longer in the list