From b3747a34e7c924f701707946a52d56e7246d2546 Mon Sep 17 00:00:00 2001 From: Junegunn Choi Date: Wed, 6 Aug 2014 10:11:29 -0700 Subject: [PATCH] Updated faq (markdown) --- faq.md | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/faq.md b/faq.md index a682f28..05904fc 100644 --- a/faq.md +++ b/faq.md @@ -1,5 +1,12 @@ ## FAQ/Troubleshooting +### Migrating from other plugin managers + +vim-plug does not require any extra statement other than `plug#begin()` and +`plug#end()`. You can remove `filetype off`, `filetype plugin indent on` and +`syntax on` from your .vimrc as they are automatically handled by +`plug#end()`. + ### Plugins are not installed/updated in parallel Your Vim does not support Ruby interface. `:echo has('ruby')` should print 1. @@ -54,10 +61,3 @@ it as "unstable" or "in development", and always use its latest revision. If you really must choose a certain untagged revision, consider forking the repository. - -### Migrating from other plugin managers - -vim-plug does not require any extra statement other than `plug#begin()` and -`plug#end()`. You can remove `filetype off`, `filetype plugin indent on` and -`syntax on` from your .vimrc as they are automatically handled by -`plug#end()`.