A single-file Vim plugin manager.
... because I can?
Everything else.
Download plug.vim and put it in ~/.vim/autoload
mkdir -p ~/.vim/autoload curl -fLo ~/.vim/autoload/plug.vim https://raw.github.com/junegunn/vim-plug/master/plug.vim
Edit your .vimrc
call plug#init() Plug 'junegunn/seoul256' Plug 'junegunn/vim-easy-align' " Plug 'user/repo', 'branch_or_tag' " ...
Then :PlugInstall to install plugins. (Default plugin directory: ~/.vim/plugged)
~/.vim/plugged
You can change the location of the plugins with plug#init(path) call.
plug#init(path)
(Default number of threads = g:plug_threads or 16)
g:plug_threads