update: callback

This commit is contained in:
Max Miliano 2023-03-31 13:20:40 -03:00
parent 72452e5cda
commit 93161b3420
2 changed files with 2 additions and 2 deletions

View file

@ -6,7 +6,7 @@ function M:new()
transparent = false,
colors = {},
user_config = {},
callback = function() end,
callback = function(colors) end,
}
setmetatable(config, self)

View file

@ -43,7 +43,7 @@ M.setup = function(user_config)
theme.set_highlights(M.colors)
M:apply_transparency()
M.callback()
M.callback(M.colors)
end
return M