diff options
author | James McCoy <jamessan@jamessan.com> | 2018-08-18 10:35:51 -0400 |
---|---|---|
committer | James McCoy <jamessan@jamessan.com> | 2018-08-18 10:35:51 -0400 |
commit | 98632f1cce66e5dd82c17f7a8da6e447b32fc962 (patch) | |
tree | 3fc912c74b9d468789923e1a08398ec663fa1e5e | |
parent | c7db42faabfe4f545952d825ed5e5fabded3543e (diff) | |
download | rneovim-98632f1cce66e5dd82c17f7a8da6e447b32fc962.tar.gz rneovim-98632f1cce66e5dd82c17f7a8da6e447b32fc962.tar.bz2 rneovim-98632f1cce66e5dd82c17f7a8da6e447b32fc962.zip |
doc: Remove irrelevant line about "only the first" vimrc is used
Vim supports multiple locations for the user's vimrc, so it will use the
first one that is found, ignoring the rest. Nvim follows the XDG spec,
so there is only one place to look for the user's vimrc, thus making the
statement unnecessary and confusing for nvim users.
Ref #8871
-rw-r--r-- | runtime/doc/starting.txt | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/runtime/doc/starting.txt b/runtime/doc/starting.txt index 24fb87a6b4..c9ce2b9dc1 100644 --- a/runtime/doc/starting.txt +++ b/runtime/doc/starting.txt @@ -408,9 +408,6 @@ accordingly. Vim proceeds in this order: Windows $XDG_CONFIG_HOME/nvim/init.vim (default for $XDG_CONFIG_HOME is ~/AppData/Local) - The files are searched in the order specified above and only the first - one that is found is read. - RECOMMENDATION: Put all your Vim configuration stuff in the $HOME/.config/nvim/ directory. That makes it easy to copy it to another system. |