mirror of
https://github.com/Bluewhale1337/ElvUIModernized.git
synced 2026-07-27 08:24:44 +00:00
30 lines
543 B
Lua
30 lines
543 B
Lua
local E, L, V, P, G = unpack(ElvUI); --Import: Engine, Locales, PrivateDB, ProfileDB, GlobalDB
|
|
|
|
--Global Settings
|
|
G["general"] = {
|
|
["autoScale"] = true,
|
|
["minUiScale"] = 0.64,
|
|
["eyefinity"] = false,
|
|
["smallerWorldMap"] = true,
|
|
["WorldMapCoordinates"] = {
|
|
["enable"] = true,
|
|
["position"] = "BOTTOMLEFT",
|
|
["xOffset"] = 0,
|
|
["yOffset"] = 0
|
|
},
|
|
["versionCheck"] = true
|
|
}
|
|
|
|
G["classCache"] = {}
|
|
|
|
G["classtimer"] = {}
|
|
|
|
G["nameplates"] = {}
|
|
|
|
G["chat"] = {
|
|
["classColorMentionExcludedNames"] = {}
|
|
}
|
|
|
|
G["bags"] = {
|
|
["ignoredItems"] = {}
|
|
} |