chore(build): auto-generate vimdoc

This commit is contained in:
github-actions[bot] 2022-12-14 20:59:50 +00:00
parent 1adebbbcc7
commit 7ca0746fbf
1 changed files with 10 additions and 2 deletions

View File

@ -151,8 +151,16 @@ CONFIGURATION *lazy.nvim-configuration*
frequency = 3600, -- check for updates every hour
},
performance = {
---@type LazyCacheConfig
cache = nil,
cache = {
enabled = true,
path = vim.fn.stdpath("state") .. "/lazy.state",
-- Once one of the following events triggers, caching will be disabled.
-- To cache all modules, set this to `{}`, but that is not recommended.
-- The default is to disable on:
-- VimEnter: not useful to cache anything else beyond startup
-- BufReadPre: this will be triggered early when opening a file from the command line directly
disable_events = { "VimEnter", "BufReadPre" },
},
reset_packpath = true, -- reset the package path to improve startup time
rtp = {
reset = true, -- reset the runtime path to $VIMRUNTIME and your config directory