mirror of
https://github.com/junegunn/vim-plug.git
synced 2025-12-06 17:14:26 +08:00
ee343ab562f3b539b6f81c8753cce532a4e6284b
vim-plug
A single-file Vim plugin manager.
Parallel installation
Serial installation
Parallel update
Serial update
Pros.
- Easier to setup
- Parallel installation/update (requires +ruby)
Cons.
- Everything else
Usage
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#begin()
Plug 'junegunn/seoul256'
Plug 'junegunn/vim-easy-align'
" Plug 'user/repo', 'branch_or_tag'
" Plug 'git@github.com:junegunn/vim-github-dashboard.git'
" ...
call plug#end()
Then :PlugInstall to install plugins. (Default plugin directory: ~/.vim/plugged)
You can change the location of the plugins with plug#init(path) call.
Commands
| Command | Description |
|---|---|
| PlugInstall [#threads] | Install plugins |
| PlugUpdate [#threads] | Install or update plugins |
| PlugClean | Remove unused directories |
| PlugUpgrade | Upgrade vim-plug itself |
(Default number of threads = g:plug_threads or 16)
Languages
Vim Script
96.1%
Shell
3.9%



