mirror of https://github.com/folke/lazy.nvim.git
chore(build): auto-generate vimdoc
This commit is contained in:
parent
31dd419aaa
commit
a24331762c
|
@ -358,6 +358,10 @@ CONFIGURATION *lazy.nvim-configuration*
|
||||||
log = { "--since=3 days ago" }, -- show commits from the last 3 days
|
log = { "--since=3 days ago" }, -- show commits from the last 3 days
|
||||||
timeout = 120, -- kill processes that take more than 2 minutes
|
timeout = 120, -- kill processes that take more than 2 minutes
|
||||||
url_format = "https://github.com/%s.git",
|
url_format = "https://github.com/%s.git",
|
||||||
|
-- lazy.nvim requires git >=2.19.0. If you really want to use lazy with an older version,
|
||||||
|
-- then set the below to false. This is should work, but is NOT supported and will
|
||||||
|
-- increase downloads a lot.
|
||||||
|
filter = true,
|
||||||
},
|
},
|
||||||
dev = {
|
dev = {
|
||||||
-- directory where you store your local plugin projects
|
-- directory where you store your local plugin projects
|
||||||
|
@ -461,7 +465,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 include in the rtp
|
paths = {}, -- add any custom paths here that you want to includes 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",
|
||||||
|
|
Loading…
Reference in New Issue