diff options
author | Drew Neil <andrew.jr.neil@gmail.com> | 2017-04-25 10:04:32 +0100 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2017-04-25 11:04:32 +0200 |
commit | a0acb2e19521298b3d80aa1cfaaef5f476218e01 (patch) | |
tree | 656c774181cb542656e6ec0aef6732c19e080078 | |
parent | e4dcf756ae4bcd3a3a3546efa2e445f338867e7f (diff) | |
download | rneovim-a0acb2e19521298b3d80aa1cfaaef5f476218e01.tar.gz rneovim-a0acb2e19521298b3d80aa1cfaaef5f476218e01.tar.bz2 rneovim-a0acb2e19521298b3d80aa1cfaaef5f476218e01.zip |
doc: Revise nvim-from-vim advice (#6505)
-rw-r--r-- | runtime/doc/nvim.txt | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/runtime/doc/nvim.txt b/runtime/doc/nvim.txt index bd483e9949..8dd329cee6 100644 --- a/runtime/doc/nvim.txt +++ b/runtime/doc/nvim.txt @@ -16,11 +16,11 @@ differences from Vim. ============================================================================== Transitioning from Vim *nvim-from-vim* -To start the transition, link your previous configuration so Nvim can use it: +To start the transition, create `~/.config/nvim/init.vim` with these contents: > - mkdir ~/.config - ln -s ~/.vim ~/.config/nvim - ln -s ~/.vimrc ~/.config/nvim/init.vim + set runtimepath+=~/.vim,~/.vim/after + set packpath+=~/.vim + source ~/.vimrc < Note: If your system sets `$XDG_CONFIG_HOME`, use that instead of `~/.config` in the code above. Nvim follows the XDG |base-directories| convention. |