fix(highlight): make sure to setup conflict colors (#470)

Signed-off-by: Aaron Pham <contact@aarnphm.xyz>
This commit is contained in:
Aaron Pham 2024-09-03 05:03:52 -04:00 committed by GitHub
parent e16111ba34
commit 8cc674f1da
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -53,13 +53,12 @@ M.setup = function()
api.nvim_set_hl(0, hl.name, { fg = hl.fg or nil, bg = hl.bg or nil, link = hl.link or nil })
end
end)
M.conflict_highlights()
end
api.nvim_set_hl(M.hint_ns, "NormalFloat", { fg = normal_float.fg, bg = normal_float.bg })
api.nvim_set_hl(M.input_ns, "NormalFloat", { fg = normal_float.fg, bg = normal_float.bg })
api.nvim_set_hl(M.input_ns, "FloatBorder", { fg = normal.fg, bg = normal.bg })
M.conflict_highlights()
end
---@param opts? AvanteConflictHighlights