mirror of
https://github.com/folke/lazy.nvim.git
synced 2025-04-04 15:07:34 +00:00
refactor!: default lazy cache path is now under cache instead of state
This commit is contained in:
parent
004b11d5ad
commit
cc6276e9b0
1 changed files with 1 additions and 1 deletions
|
@ -9,7 +9,7 @@ M.VERSION = "1"
|
|||
---@class LazyCacheConfig
|
||||
M.config = {
|
||||
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.
|
||||
-- To cache all modules, set this to `{}`, but that is not recommended.
|
||||
-- The default is to disable on:
|
||||
|
|
Loading…
Add table
Reference in a new issue