https://github.com/junegunn/vim-plug

Usage with nvim

  1. download with the command:
sh -c 'curl -fLo "${XDG_DATA_HOME:-$HOME/.local/share}"/nvim/site/autoload/plug.vim --create-dirs \
       https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim'
  1. go into your ~/.config/nvim/init.vim and write the following:
call plug#begin(stdpath('data') . '/plugged')
Plug "https://github.com/ThePrimeagen/vim-be-good" // this is a demo
call plug#end()
  1. save your init.vim
  2. open a new nvim, and then type in the command :PlugInstall
  3. updating is done with :PlugUpdate