Simpler gist usage

Junegunn Choi 2016-03-04 05:19:24 +09:00
parent 636e6bc92f
commit f0f027ff35

5
faq.md

@ -30,11 +30,12 @@ augroup END
### Gist as plugin
Unlike [NeoBundle](https://github.com/Shougo/neobundle.vim), vim-plug does not natively support installing small Vim plugins from Gist. But there is a workaround if you really want it.
vim-plug does not natively support installing small Vim plugins from Gist.
But there is a workaround if you really want it.
```vim
Plug 'https://gist.github.com/952560a43601cd9898f1.git',
\ { 'dir': g:plug_home.'/xxx/plugin', 'rtp': '..' }
\ { 'as': 'xxx', 'do': 'mkdir -p plugin; cp -f *.vim plugin/' }
```
### Migrating from other plugin managers