From ca4b4398b38ec20f98839d53767414ca9d6786c0 Mon Sep 17 00:00:00 2001 From: Kuang-che Wu Date: Wed, 29 Jun 2016 23:36:45 +0800 Subject: [PATCH] Fix smaple command line The source path is relative to the target. --- 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 ```