mirror of https://github.com/folke/lazy.nvim.git
refactor!: default lazy cache path is now under cache instead of state
This commit is contained in:
parent
004b11d5ad
commit
cc6276e9b0
|
@ -9,7 +9,7 @@ M.VERSION = "1"
|
||||||
---@class LazyCacheConfig
|
---@class LazyCacheConfig
|
||||||
M.config = {
|
M.config = {
|
||||||
enabled = true,
|
enabled = true,
|
||||||
path = vim.fn.stdpath("state") .. "/lazy/cache",
|
path = vim.fn.stdpath("cache") .. "/lazy/cache",
|
||||||
-- Once one of the following events triggers, caching will be disabled.
|
-- Once one of the following events triggers, caching will be disabled.
|
||||||
-- To cache all modules, set this to `{}`, but that is not recommended.
|
-- To cache all modules, set this to `{}`, but that is not recommended.
|
||||||
-- The default is to disable on:
|
-- The default is to disable on:
|
||||||
|
|
Loading…
Reference in New Issue