vim/colorizer: use foreground mode

It's easy to confuse the background mode with search highlights.
This commit is contained in:
Fernando Schauenburg 2023-08-17 22:23:25 +02:00
parent c9b680e93a
commit 79b5b7812f

View file

@ -8,9 +8,11 @@ M.event = {
} }
M.config = function() M.config = function()
require('colorizer').setup(nil, { require('colorizer').setup(--[[ filetypes ]] nil, {
css = true, css = true, -- Enable all CSS features: rgb_fn, hsl_fn, names, RGB, RRGGBB
mode = 'foreground',
}) })
end end
return M return M