morrowind-keyboard-layout-c.../MWSE/mods/Keyboard Layout Changer/config.lua

17 lines
302 B
Lua
Raw Normal View History

2020-07-09 21:35:21 -07:00
local common = require("Keyboard Layout Changer.common")
local this = {}
local currentConfig
this.default = {
keyboardLayout = "qwerty"
}
function this.getConfig()
currentConfig = currentConfig or mwse.loadConfig(common.configString, this.default)
return currentConfig
end
return this