Skip to content

Commit

Permalink
refactor!: default lazy cache path is now under cache instead of state
Browse files Browse the repository at this point in the history
  • Loading branch information
folke committed Dec 23, 2022
1 parent 004b11d commit cc6276e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lua/lazy/core/cache.lua
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit cc6276e

Please sign in to comment.