diff options
author | opalmay <[email protected]> | 2023-02-24 16:48:08 +0200 |
---|---|---|
committer | opalmay <[email protected]> | 2023-02-24 16:48:08 +0200 |
commit | 55fc5dd6e170be0248501840404636663ff25167 (patch) | |
tree | 4852d30b2662dc7f00c6d8cffe3d28888c8278c0 | |
parent | e85a6e16604c8ddfcfad404d78137bd22f989bd9 (diff) |
refactor: dont override databootstrap-stdpath
-rw-r--r-- | lua/lvim/bootstrap.lua | 4 |
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 |