From 7a2b990079cff4d4c8e6a2708935c1065cc3417c Mon Sep 17 00:00:00 2001 From: Kuang-che Wu Date: Wed, 29 Jun 2016 23:36:45 +0800 Subject: [PATCH] Neovim: fix sample command line The source path is relative to the target. Closes https://github.com/mhinz/vim-galore/pull/90 --- content/neovim.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/neovim.md b/content/neovim.md index a437d95..fc1b6f9 100644 --- a/content/neovim.md +++ b/content/neovim.md @@ -50,7 +50,7 @@ If you want to share your vimrc with Neovim, you can easily do that like this ```sh $ cd $ mkdir -p .config -$ ln -s .vim .config/nvim +$ ln -s ../.vim .config/nvim $ cd .vim $ ln -s vimrc init.vim ```