mirror of https://github.com/folke/lazy.nvim.git
chore(build): auto-generate vimdoc
This commit is contained in:
parent
ff24f493ee
commit
57bea32e4f
|
@ -496,11 +496,10 @@ sequence for more flexibility and better performance.
|
||||||
In practice this means that step 10 of |Neovim Initialization| is done by Lazy:
|
In practice this means that step 10 of |Neovim Initialization| is done by Lazy:
|
||||||
|
|
||||||
|
|
||||||
1. all files from `/plugin` and `/ftdetect` directories in you rtp are sourced (excluding `/after`)
|
1. all plugins with `lazy=false` are loaded. This includes sourcing `/plugin` and `/ftdetect` files. (`/after` will not be sourced yet)
|
||||||
2. 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 plugins’ `/after/plugin` files are sourced
|
3. all `/after/plugin` files are sourced (this inludes `/after` from plugins)
|
||||||
4. all `/after/plugin` files from the original rtp are sourced
|
4. all the plugins’ `init()` functions are executed
|
||||||
5. all the plugins’ `init()` functions are executed
|
|
||||||
|
|
||||||
|
|
||||||
Files from runtime directories are always sourced in alphabetical order.
|
Files from runtime directories are always sourced in alphabetical order.
|
||||||
|
|
Loading…
Reference in New Issue