Improve parallel update process

This commit is contained in:
Junegunn Choi
2013-09-11 12:06:57 +09:00
parent bc438626ba
commit 0c1a96b6b2
2 changed files with 29 additions and 24 deletions

View File

@@ -1,15 +1,15 @@
vim-plug
========
Vim plugin manager.
A single-file Vim plugin manager.
### Why?
### Wh..why?
Because I can?
... because I can?
### Pros.
- Marginally simpler
- Easier to setup
- Parallel installation/update (requires +ruby)
- Alternative directory structure: user/repo/branch
@@ -23,7 +23,7 @@ Download plug.vim and put it in ~/.vim/autoload
```sh
mkdir -p ~/.vim/autoload
curl -fL -o ~/.vim/autoload/plug.vim https://raw.github.com/junegunn/vim-plug/master/plug.vim
curl -fLo ~/.vim/autoload/plug.vim https://raw.github.com/junegunn/vim-plug/master/plug.vim
```
Edit your .vimrc
@@ -50,5 +50,5 @@ You can change the location of the plugins with `plug#init(path)` call.
| PlugClean | Remove unused directories |
| PlugUpgrade | Upgrade vim-plug itself |
(Default #threads = Number of plugins)
(Default number of threads = `g:plug_threads` or 16)