Reviewed-on: #1 Co-authored-by: Tomas Mirchev <contact@tomastm.com> Co-committed-by: Tomas Mirchev <contact@tomastm.com>
15 lines
217 B
Lua
15 lines
217 B
Lua
local M = {
|
|
name = "invero",
|
|
variant = "light",
|
|
mode = "ansi",
|
|
exclude_integrations = {},
|
|
}
|
|
|
|
function M.load()
|
|
local setup = require("themes." .. M.name .. ".setup")
|
|
setup.reset(M)
|
|
setup.apply(M)
|
|
end
|
|
|
|
return M
|