aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorsmolck <46855713+smolck@users.noreply.github.com>2021-06-23 02:36:03 -0500
committerGitHub <noreply@github.com>2021-06-23 09:36:03 +0200
commit0d7e33bc1307117127e519fb12ec491a1a1ebd82 (patch)
tree121d01c0e0b3a79dacd554e7e0f4bf8d0afbd884
parent5a24284b8d88098018596fe20ed537c7a98dc9b2 (diff)
downloadrneovim-0d7e33bc1307117127e519fb12ec491a1a1ebd82.tar.gz
rneovim-0d7e33bc1307117127e519fb12ec491a1a1ebd82.tar.bz2
rneovim-0d7e33bc1307117127e519fb12ec491a1a1ebd82.zip
docs(starting): mention init.lua in paths and remove repetition (#14883)
-rw-r--r--runtime/doc/starting.txt8
1 files changed, 4 insertions, 4 deletions
diff --git a/runtime/doc/starting.txt b/runtime/doc/starting.txt
index 2110b88330..5431ce3bd8 100644
--- a/runtime/doc/starting.txt
+++ b/runtime/doc/starting.txt
@@ -416,11 +416,11 @@ accordingly. Vim proceeds in this order:
the same time. Each line in a "init.vim" is executed as an Ex command
line. See also |vimrc-intro| and |base-directories|.
- The Nvim config file is "init.vim", located at:
- Unix ~/.config/nvim/init.vim
- Windows ~/AppData/Local/nvim/init.vim
+ The config file is located at:
+ Unix ~/.config/nvim/init.vim (or init.lua)
+ Windows ~/AppData/Local/nvim/init.vim (or init.lua)
or if |$XDG_CONFIG_HOME| is defined:
- $XDG_CONFIG_HOME/nvim/init.vim
+ $XDG_CONFIG_HOME/nvim/init.vim (or init.lua)
If Nvim was started with "-u {file}" then {file} is used as the config
and all initializations until 5. are skipped. $MYVIMRC is not set.