mirror of
https://github.com/junegunn/vim-plug.git
synced 2024-12-24 13:07:36 -07:00
Updated faq (markdown)
parent
7df4310b7a
commit
91c0b0abe5
11
faq.md
11
faq.md
@ -7,6 +7,17 @@ vim-plug does not require any extra statement other than `plug#begin()` and
|
||||
`syntax on` from your .vimrc as they are automatically handled by
|
||||
`plug#end()`.
|
||||
|
||||
Since all the other major plugin managers store plugins in "bundle" directory,
|
||||
you might want to pass it to `plug#begin()` if you do not wish to reinstall plugins.
|
||||
|
||||
```vim
|
||||
" For Mac/Linux users
|
||||
call plug#begin('~/.vim/bundle')
|
||||
|
||||
" For Windows users
|
||||
call plug#begin('~/vimfiles/bundle')
|
||||
```
|
||||
|
||||
### Plugins are not installed/updated in parallel
|
||||
|
||||
Your Vim does not support Ruby interface. `:echo has('ruby')` should print 1.
|
||||
|
Loading…
Reference in New Issue
Block a user