diff options
author | christianchiarulli <[email protected]> | 2021-05-29 02:49:59 -0400 |
---|---|---|
committer | christianchiarulli <[email protected]> | 2021-05-29 02:49:59 -0400 |
commit | 66501fefe7ad7742a36cae147b7efa72a36e289b (patch) | |
tree | b9095d6d53e96db236b5c5cf90cdcec5aa12eb63 /lua/lv-colorizer/init.lua | |
parent | 4ddcaf55a9047807c211d1fb31fc86dff7971162 (diff) |
add some useful plugins to base config and a option to enable extras
Diffstat (limited to 'lua/lv-colorizer/init.lua')
-rw-r--r-- | lua/lv-colorizer/init.lua | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/lua/lv-colorizer/init.lua b/lua/lv-colorizer/init.lua new file mode 100644 index 00000000..ed8fd408 --- /dev/null +++ b/lua/lv-colorizer/init.lua @@ -0,0 +1,13 @@ +require'colorizer'.setup( + {'*';}, + { + RGB = true; -- #RGB hex codes + 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 + }) + -- names = true; -- "Name" codes like Blue + |