Skip to content

Commit

Permalink
fix(config): add missing field for Config type
Browse files Browse the repository at this point in the history
  • Loading branch information
PunGrumpy committed Jan 30, 2024
1 parent 639e156 commit 3bb14e9
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion lua/dullahan/config.lua
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,10 @@ local defaults = {
}

---@type Config
M.options = {}
M.options = {
on_colors = function(colors) end,
on_highlights = function(highlights, colors) end,
}

---@param options Config|nil
function M.setup(options)
Expand Down

0 comments on commit 3bb14e9

Please sign in to comment.