From f085751ca149f467ce0d1e44132a67f7d27049dc Mon Sep 17 00:00:00 2001 From: Shawn Hatori <5499686+shawnhatori@users.noreply.github.com> Date: Mon, 3 Jan 2022 08:47:53 -0500 Subject: [PATCH] README: Clarify recommended plugins directory for Windows Vim (#1151) --- README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 09f562d..9bc9d9c 100644 --- a/README.md +++ b/README.md @@ -97,7 +97,9 @@ Add a vim-plug section to your `~/.vimrc` (or `stdpath('config') . '/init.vim'` ```vim " Specify a directory for plugins -" - For Neovim: stdpath('data') . '/plugged' +" - For Vim (Linux/macOS): '~/.vim/plugged' +" - For Vim (Windows): '~/vimfiles/plugged' +" - For Neovim (Linux/macOS/Windows): stdpath('data') . '/plugged' " - Avoid using standard Vim directory names like 'plugin' call plug#begin('~/.vim/plugged')