Skip to content

Commit

Permalink
fix: use correct cache path (LunarVim#2593)
Browse files Browse the repository at this point in the history
  • Loading branch information
younger-1 authored and jameswalmsley committed May 13, 2022
1 parent b9c18f9 commit 728a5fd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lua/lvim/bootstrap.lua
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ end
function _G.get_cache_dir()
local lvim_cache_dir = os.getenv "LUNARVIM_CACHE_DIR"
if not lvim_cache_dir then
return vim.call("stdpath", "config")
return vim.call("stdpath", "cache")
end
return lvim_cache_dir
end
Expand Down

0 comments on commit 728a5fd

Please sign in to comment.