diff options
author | christianchiarulli <[email protected]> | 2021-07-09 19:38:15 -0400 |
---|---|---|
committer | christianchiarulli <[email protected]> | 2021-07-09 19:38:15 -0400 |
commit | 607d473afea3063339cdb066d5e9c6cd0b8f1223 (patch) | |
tree | ffb6ac0babe7ee0bff47f1b0d51c68fc61d5f0c6 /lua/lv-colorizer/init.lua | |
parent | bc81c31fb7c0e8dca3098a8f5cf75d187fd06b9f (diff) |
remove extra plugins (debloating)
Diffstat (limited to 'lua/lv-colorizer/init.lua')
-rw-r--r-- | lua/lv-colorizer/init.lua | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/lua/lv-colorizer/init.lua b/lua/lv-colorizer/init.lua deleted file mode 100644 index abe2f728..00000000 --- a/lua/lv-colorizer/init.lua +++ /dev/null @@ -1,14 +0,0 @@ -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 -}) --- names = true; -- "Name" codes like Blue |