mirror of
https://github.com/junegunn/vim-plug.git
synced 2024-12-19 18:47:29 -07:00
71 lines
1.5 KiB
Markdown
71 lines
1.5 KiB
Markdown
vim-plug
|
|
========
|
|
|
|
A single-file Vim plugin manager.
|
|
|
|
### Pros.
|
|
|
|
- Easier to setup
|
|
- Parallel installation/update (requires +ruby)
|
|
|
|
### Cons.
|
|
|
|
- Everything else
|
|
|
|
### Usage
|
|
|
|
Download plug.vim and put it in ~/.vim/autoload
|
|
|
|
```sh
|
|
mkdir -p ~/.vim/autoload
|
|
curl -fLo ~/.vim/autoload/plug.vim https://raw.github.com/junegunn/vim-plug/master/plug.vim
|
|
```
|
|
|
|
Edit your .vimrc
|
|
|
|
```vim
|
|
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)
|
|
|
|
### Screenshots
|
|
|
|
#### Parallel installation
|
|
|
|
![](https://raw.github.com/junegunn/vim-plug/master/gif/pi.gif)
|
|
|
|
#### Serial installation
|
|
|
|
![](https://raw.github.com/junegunn/vim-plug/master/gif/si.gif)
|
|
|
|
#### Parallel update
|
|
|
|
![](https://raw.github.com/junegunn/vim-plug/master/gif/pu.gif)
|
|
|
|
#### Serial update
|
|
|
|
![](https://raw.github.com/junegunn/vim-plug/master/gif/su.gif)
|
|
|