mirror of https://github.com/folke/lazy.nvim.git
chore(build): auto-generate vimdoc
This commit is contained in:
parent
908d71872b
commit
cab4682d22
|
@ -460,7 +460,7 @@ CONFIGURATION *lazy.nvim-configuration*
|
||||||
rtp = {
|
rtp = {
|
||||||
reset = true, -- reset the runtime path to $VIMRUNTIME and your config directory
|
reset = true, -- reset the runtime path to $VIMRUNTIME and your config directory
|
||||||
---@type string[]
|
---@type string[]
|
||||||
paths = {}, -- add any custom paths here that you want to indluce in the rtp
|
paths = {}, -- add any custom paths here that you want to include in the rtp
|
||||||
---@type string[] list any plugins you want to disable here
|
---@type string[] list any plugins you want to disable here
|
||||||
disabled_plugins = {
|
disabled_plugins = {
|
||||||
-- "gzip",
|
-- "gzip",
|
||||||
|
@ -671,7 +671,7 @@ In practice this means that step 10 of |Neovim Initialization| is done by Lazy:
|
||||||
1. 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)
|
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`)
|
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)
|
4. all `/after/plugin` files are sourced (this includes `/after` from plugins)
|
||||||
|
|
||||||
|
|
||||||
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