From 6f5c85d7eebd9325fe01799b9a4ee496f0d7926d Mon Sep 17 00:00:00 2001 From: Junegunn Choi Date: Tue, 5 Apr 2016 15:23:26 +0900 Subject: [PATCH] Insecure config --- faq.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/faq.md b/faq.md index 6218e9d..7993293 100644 --- a/faq.md +++ b/faq.md @@ -12,6 +12,8 @@ if empty(glob('~/.vim/autoload/plug.vim')) endif ``` +(If you're behind an HTTP proxy, you may need to add `--insecure` option to the curl command. In that case, you also need to set `$GIT_SSL_NO_VERIFY` to true.) + ### Loading plugins manually With `on` and `for` options, vim-plug allows you to defer loading of plugins. But if you want a plugin to be loaded on an event that is not supported by vim-plug, you can set `on` or `for` option to an empty list, and use `plug#load(names...)` function later to load the plugin manually. The following example will load [ultisnips](https://github.com/SirVer/ultisnips) and [YouCompleteMe](https://github.com/Valloric/YouCompleteMe) first time you enter insert mode.