From 2b60b836b108a7eb17d6cf465dc3c68f1c8d5e47 Mon Sep 17 00:00:00 2001 From: Shawn Hatori Date: Mon, 3 Jan 2022 01:21:15 -0500 Subject: [PATCH] README: make editor/OS conditions more explicit --- README.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 625815a..9bc9d9c 100644 --- a/README.md +++ b/README.md @@ -97,8 +97,9 @@ Add a vim-plug section to your `~/.vimrc` (or `stdpath('config') . '/init.vim'` ```vim " Specify a directory for plugins -" - For Windows: '~/vimfiles/plugged' -" - 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')