refactor!: default lazy cache path is now under cache instead of state

This commit is contained in:
Folke Lemaitre 2022-12-23 07:48:40 +01:00
parent 004b11d5ad
commit cc6276e9b0
No known key found for this signature in database
GPG Key ID: 41F8B1FBACAE2040
1 changed files with 1 additions and 1 deletions

View File

@ -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: