From 455a1f485bd0581663018c9d7795a002d791ddb9 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Thu, 22 Dec 2022 17:48:24 +0000 Subject: [PATCH] chore(build): auto-generate vimdoc --- doc/lazy.nvim.txt | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/doc/lazy.nvim.txt b/doc/lazy.nvim.txt index 358c845..905cccb 100644 --- a/doc/lazy.nvim.txt +++ b/doc/lazy.nvim.txt @@ -555,10 +555,10 @@ sequence for more flexibility and better performance. In practice this means that step 10 of |Neovim Initialization| is done by Lazy: -1. all plugins with `lazy=false` are loaded. This includes sourcing `/plugin` and `/ftdetect` files. (`/after` will not be sourced yet) -2. all files from `/plugin` and `/ftdetect` directories in you rtp are sourced (excluding `/after`) -3. all `/after/plugin` files are sourced (this inludes `/after` from plugins) -4. all the plugins’ `init()` functions are executed +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) +3. all files from `/plugin` and `/ftdetect` directories in you rtp are sourced (excluding `/after`) +4. all `/after/plugin` files are sourced (this inludes `/after` from plugins) Files from runtime directories are always sourced in alphabetical order.