diff options
author | talha <talha@talhaamir.xyz> | 2024-01-09 01:10:27 +0500 |
---|---|---|
committer | talha <talha@talhaamir.xyz> | 2024-01-09 01:10:27 +0500 |
commit | 62a5f27b6d43a769c6699cbbadc2e78ab2f004db (patch) | |
tree | 91d05ae7aa659013ae4db5777ee8d10482eb524a /lua/talha/functions.lua | |
parent | 40a03a865a7ee31561c4150819f080b932ab17de (diff) |
removed GetCacheDir
Diffstat (limited to 'lua/talha/functions.lua')
-rw-r--r-- | lua/talha/functions.lua | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/lua/talha/functions.lua b/lua/talha/functions.lua index d5e2051..9724541 100644 --- a/lua/talha/functions.lua +++ b/lua/talha/functions.lua @@ -87,12 +87,3 @@ function GetHomeDir() return nil end -function GetCacheDir() - os_name = vim.loop.os_uname().sysname - if os_name == 'Linux' then - return vim.fn.stdpath("data") - else - -- os is windows - return "w:\\tools\\.cache" - end -end |