summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoropalmay <[email protected]>2023-02-24 16:48:08 +0200
committeropalmay <[email protected]>2023-02-24 16:48:08 +0200
commit55fc5dd6e170be0248501840404636663ff25167 (patch)
tree4852d30b2662dc7f00c6d8cffe3d28888c8278c0
parente85a6e16604c8ddfcfad404d78137bd22f989bd9 (diff)
refactor: dont override databootstrap-stdpath
-rw-r--r--lua/lvim/bootstrap.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/lua/lvim/bootstrap.lua b/lua/lvim/bootstrap.lua
index 56e1c621..dffe21a0 100644
--- a/lua/lvim/bootstrap.lua
+++ b/lua/lvim/bootstrap.lua
@@ -70,8 +70,8 @@ function M:init(base_dir)
return _G.get_cache_dir()
elseif what == "config" then
return _G.get_config_dir()
- elseif what == "data" then
- return _G.get_runtime_dir()
+ -- elseif what == "data" then
+ -- return _G.get_runtime_dir()
end
return vim.call("stdpath", what)
end