vimtricks.wiki Concise Vim tricks, one at a time.

How do you install plugins with vim-plug?

Answer

:PlugInstall

Explanation

After adding Plug 'author/plugin' to your vimrc between call plug#begin() and call plug#end(), run :PlugInstall to install.

Next

How do I visually select a double-quoted string including the quotes themselves?