From f870f6a54d33aa6b6351055255cb9268888c096e Mon Sep 17 00:00:00 2001 From: Tony Wang <100271394+wngtk@users.noreply.github.com> Date: Mon, 16 Sep 2024 16:05:09 +0800 Subject: [PATCH] docs: neovim doc url (#1738) ## Description The anchor updated in nvim documentations. --- docs/usage/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/usage/index.md b/docs/usage/index.md index be1466f..eccfb18 100644 --- a/docs/usage/index.md +++ b/docs/usage/index.md @@ -9,7 +9,7 @@ sidebar_position: 6 completely (`vim.go.loadplugins = false`). It takes over the complete startup sequence for more flexibility and better performance. -In practice this means that step 10 of [Neovim Initialization](https://neovim.io/doc/user/starting.html#initialization) is done by Lazy: +In practice this means that step 10 of [Neovim Initialization](https://neovim.io/doc/user/starting.html#_initialization) is done by Lazy: 1. All the plugins' `init()` functions are executed 2. All plugins with `lazy=false` are loaded. This includes sourcing `/plugin` and `/ftdetect` files. (`/after` will not be sourced yet)