Spot an error? Know how to make this page better? I appreciate pull requests.

Automatic installation of vim-plug

Bootstrapping your neovim just a little bit easier

Add the following to the very top of your neovim config

if empty(glob('~/.config/nvim/autoload/plug.vim'))
v silent !curl -fLo ~/.config/nvim/autoload/plug.vim --create-dirs
    \ https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim
  autocmd VimEnter * PlugInstall | source $MYVIMRC
endif