Explorar o código

fix: use correct cache path (#2593)

Xavier Young %!s(int64=3) %!d(string=hai) anos
pai
achega
47e26746df
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      lua/lvim/bootstrap.lua

+ 1 - 1
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