From 3bb14e953d9a25e84c275285a9e06b09fbca0782 Mon Sep 17 00:00:00 2001 From: PunGrumpy <108584943+PunGrumpy@users.noreply.github.com> Date: Tue, 30 Jan 2024 09:41:40 +0700 Subject: [PATCH] fix(config): add missing field for `Config` type --- lua/dullahan/config.lua | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/lua/dullahan/config.lua b/lua/dullahan/config.lua index adcd4a47..d2a51275 100644 --- a/lua/dullahan/config.lua +++ b/lua/dullahan/config.lua @@ -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)