Gist as plugin

Junegunn Choi 2015-02-08 14:32:51 +09:00
parent a7f52392e0
commit 818340b84c

10
faq.md

@ -131,4 +131,12 @@ Plug 'tpope/vim-surround'
Plug 'tpope/vim-repeat'
```
See [#133](https://github.com/junegunn/vim-plug/issues/133), [#109](https://github.com/junegunn/vim-plug/issues/109), [#56](https://github.com/junegunn/vim-plug/issues/56) for more details.
See [#133](https://github.com/junegunn/vim-plug/issues/133), [#109](https://github.com/junegunn/vim-plug/issues/109), [#56](https://github.com/junegunn/vim-plug/issues/56) for more details.
### 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 'https://gist.github.com/952560a43601cd9898f1.git', { 'dir': g:plug_home.'/xxx/plugin', 'rtp': '..' }
```