The Lua Journey Begins...

This commit is contained in:
Christian Chiarulli 2021-03-14 15:10:28 -04:00 committed by GitHub
parent d002b0419a
commit 0dc3c5030b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
102 changed files with 292 additions and 7863 deletions

12
lua/nv-colorizer/init.lua Normal file
View file

@ -0,0 +1,12 @@
require'colorizer'.setup(
{'*';},
{
RGB = true; -- #RGB hex codes
RRGGBB = true; -- #RRGGBB hex codes
-- names = true; -- "Name" codes like Blue
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
})