From b50f9bb16b9832235beb60ed290393a5d03a4bf5 Mon Sep 17 00:00:00 2001 From: Junegunn Choi Date: Sun, 18 Dec 2016 12:12:57 +0900 Subject: [PATCH] More description on `plug#end` Related: #379 --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index f170a66..53f17be 100644 --- a/README.md +++ b/README.md @@ -65,6 +65,8 @@ Add a vim-plug section to your `~/.vimrc` (or `~/.config/nvim/init.vim` for Neov 1. Begin the section with `call plug#begin()` 1. List the plugins with `Plug` commands 1. `call plug#end()` to update `&runtimepath` and initialize plugin system + - Automatically executes `filetype plugin indent on` and `syntax enable`. + You can revert the settings after the call. e.g. `filetype indent off`, `syntax off`, etc. #### Example