diff --git a/faq.md b/faq.md index 9455e95..c529322 100644 --- a/faq.md +++ b/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. \ No newline at end of file +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': '..' } +``` \ No newline at end of file