aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdam Byrtek <adambyrtek@gmail.com>2017-05-06 16:47:30 +0000
committerJustin M. Keyes <justinkz@gmail.com>2017-05-08 17:28:12 +0200
commit8c8ea1f8f3ffd76a2a6a6b12530377cedd9fd82c (patch)
tree3b5a649ebabe364b23b4cb70eaea8e55b4eab9eb
parentb23aa1cf099ed43307c14fe47ddda87ef78f6173 (diff)
downloadrneovim-8c8ea1f8f3ffd76a2a6a6b12530377cedd9fd82c.tar.gz
rneovim-8c8ea1f8f3ffd76a2a6a6b12530377cedd9fd82c.tar.bz2
rneovim-8c8ea1f8f3ffd76a2a6a6b12530377cedd9fd82c.zip
doc: nvim-from-vim: Prepend "~/.vim" #6694
-rw-r--r--runtime/doc/nvim.txt6
1 files changed, 3 insertions, 3 deletions
diff --git a/runtime/doc/nvim.txt b/runtime/doc/nvim.txt
index 2256791ec4..29059f83d9 100644
--- a/runtime/doc/nvim.txt
+++ b/runtime/doc/nvim.txt
@@ -18,10 +18,10 @@ differences from Vim.
==============================================================================
Transitioning from Vim *nvim-from-vim*
-To start the transition, create `~/.config/nvim/init.vim` with these contents:
+To start the transition, create ~/.config/nvim/init.vim with these contents:
>
- set runtimepath+=~/.vim,~/.vim/after
- set packpath+=~/.vim
+ set runtimepath^=~/.vim runtimepath+=~/.vim/after
+ let &packpath = &runtimepath
source ~/.vimrc
<
Note: If your system sets `$XDG_CONFIG_HOME`, use that instead of `~/.config`