Added in the ability to customize the config directory used with the environment variable XDG_CONFIG_HOME. (#271)

This commit is contained in:
Adam 2021-06-17 17:15:08 -04:00 committed by Francesco Abbate
parent 66275fe207
commit d45ec645d3
1 changed files with 1 additions and 1 deletions

View File

@ -12,7 +12,7 @@ else
local prefix = EXEDIR:match("^(.+)[/\\]bin$")
DATADIR = prefix and (prefix .. '/share/lite-xl') or (EXEDIR .. '/data')
end
USERDIR = HOME and (HOME .. '/.config/lite-xl') or (EXEDIR .. '/user')
USERDIR = os.getenv("XDG_CONFIG_HOME") or (HOME and (HOME .. '/.config/lite-xl') or (EXEDIR .. '/user'))
package.path = DATADIR .. '/?.lua;' .. package.path
package.path = DATADIR .. '/?/init.lua;' .. package.path