From f0f027ff35dfc87a82c6f551909e3d9aed854436 Mon Sep 17 00:00:00 2001 From: Junegunn Choi Date: Fri, 4 Mar 2016 05:19:24 +0900 Subject: [PATCH] Simpler gist usage --- faq.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/faq.md b/faq.md index c1d38f1..6218e9d 100644 --- a/faq.md +++ b/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