LunarVim/lua/nv-colorizer/init.lua

13 lines
544 B
Lua
Raw Normal View History

2020-04-27 23:50:23 +02:00
require'colorizer'.setup(
{'*';},
2021-03-14 20:10:28 +01:00
{
2020-04-27 23:50:23 +02:00
RGB = true; -- #RGB hex codes
2021-03-15 08:31:27 +01:00
RRGGBB = true; -- #RRGGBB hex codes
RRGGBBAA = true; -- #RRGGBBAA hex codes
rgb_fn = true; -- CSS rgb() and rgba() functions
hsl_fn = true; -- CSS hsl() and hsla() functions
css = true; -- Enable all CSS features: rgb_fn, hsl_fn, names, RGB, RRGGBB
css_fn = true; -- Enable all CSS *functions*: rgb_fn, hsl_fn
2020-04-27 23:50:23 +02:00
})
2021-03-15 08:31:27 +01:00
-- names = true; -- "Name" codes like Blue