From 47e26746df7e0d85bccbe645a64bfea983d13e6a Mon Sep 17 00:00:00 2001 From: Xavier Young <45989017+younger-1@users.noreply.github.com> Date: Tue, 10 May 2022 23:28:30 +0800 Subject: fix: use correct cache path (#2593) --- lua/lvim/bootstrap.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lua/lvim/bootstrap.lua') diff --git a/lua/lvim/bootstrap.lua b/lua/lvim/bootstrap.lua index a3114a1e..f637c144 100644 --- a/lua/lvim/bootstrap.lua +++ b/lua/lvim/bootstrap.lua @@ -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 -- cgit v1.2.3