diff options
| author | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2022-04-06 23:47:53 +0200 |
|---|---|---|
| committer | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2022-04-06 23:47:53 +0200 |
| commit | e1c5a423a6e8abec507d89863903be869762a55e (patch) | |
| tree | 925b268e08ffadd86f00611df636c54da45e0299 /lua/config/colorizer.lua | |
| parent | 9404b0daa8733fb830b98eb13503c7f1bcbb915b (diff) | |
chore(lua): nuke lua files
Diffstat (limited to 'lua/config/colorizer.lua')
| -rw-r--r-- | lua/config/colorizer.lua | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/lua/config/colorizer.lua b/lua/config/colorizer.lua deleted file mode 100644 index a964c94..0000000 --- a/lua/config/colorizer.lua +++ /dev/null @@ -1,16 +0,0 @@ --- Enables colorization of color codes in source files. - -local status_ok, colorizer = pcall(require, "colorizer") -if not status_ok then - return -end - -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 -}) |