chore: change path for java workspace

This commit is contained in:
fiplox 2023-02-28 19:42:21 +01:00
parent 7b3e5b633f
commit e87c6819a6
1 changed files with 2 additions and 2 deletions

View File

@ -10,10 +10,10 @@ end
-- Determine OS -- Determine OS
local home = os.getenv 'HOME' local home = os.getenv 'HOME'
if vim.fn.has 'mac' == 1 then if vim.fn.has 'mac' == 1 then
WORKSPACE_PATH = home .. '/workspace/' WORKSPACE_PATH = home .. '/.workspace/'
CONFIG = 'mac' CONFIG = 'mac'
elseif vim.fn.has 'unix' == 1 then elseif vim.fn.has 'unix' == 1 then
WORKSPACE_PATH = home .. '/workspace/' WORKSPACE_PATH = home .. '/.workspace/'
CONFIG = 'linux' CONFIG = 'linux'
else else
print 'Unsupported system' print 'Unsupported system'