From 8cd8dde5eef0cd3da36da90ed54405d27f886e8a Mon Sep 17 00:00:00 2001 From: DanielApt Date: Tue, 26 Sep 2023 11:17:44 +0100 Subject: [PATCH] Add reload vimrc step to usage section Reloading the .vimrc should be part of the usage section, not the example section. --- README.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/README.md b/README.md index 2602467..bb1ff69 100644 --- a/README.md +++ b/README.md @@ -92,6 +92,7 @@ Add a vim-plug section to your `~/.vimrc` (or `stdpath('config') . '/init.vim'` 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. +1. Reload .vimrc (`:source ~/.vimrc`) and `:PlugInstall` to install plugins. #### Example @@ -143,8 +144,6 @@ call plug#end() " syntax off " Disable syntax highlighting ``` -Reload .vimrc and `:PlugInstall` to install plugins. - ### Commands | Command | Description |