From 7fca59675749a0f2e85ce9e9bd2d139db4192571 Mon Sep 17 00:00:00 2001 From: Junegunn Choi Date: Tue, 4 Dec 2018 10:13:50 +0900 Subject: [PATCH] Updated tutorial (markdown) --- tutorial.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tutorial.md b/tutorial.md index 9f564a0..fd6e7f5 100644 --- a/tutorial.md +++ b/tutorial.md @@ -35,8 +35,8 @@ All you have to do is to download the file in a directory so that Vim can load i curl -fLo ~/.vim/autoload/plug.vim --create-dirs \ https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim -# Neovim (~/.config/nvim/autoload) -curl -fLo ~/.config/nvim/autoload/plug.vim --create-dirs \ +# Neovim (~/.local/share/nvim/site/autoload) +curl -fLo ~/.local/share/nvim/site/autoload/plug.vim --create-dirs \ https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim ``` @@ -45,7 +45,7 @@ Installing plugins With vim-plug, you declare the list of plugins you want to use in your Vim configuration file. It's `~/.vimrc` for ordinary Vim, and -`~/.config/nvim/init.vim` for Neovim. The list should start with +`~/.local/share/nvim/site/autoload/plug.vim` for Neovim. The list should start with `call plug#begin(PLUGIN_DIRECTORY)` and end with `call plug#end()`. ```vim