mirror of
https://github.com/LunarVim/LunarVim.git
synced 2025-08-03 17:45:52 +02:00
The Lua Journey Begins...
This commit is contained in:
parent
d002b0419a
commit
0dc3c5030b
102 changed files with 292 additions and 7863 deletions
12
lua/nv-colorizer/init.lua
Normal file
12
lua/nv-colorizer/init.lua
Normal 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
|
||||
})
|
Loading…
Add table
Add a link
Reference in a new issue