From 143ca6b166b51de9ba26e4f82996a6d30ad9a3f9 Mon Sep 17 00:00:00 2001 From: th3r00t Date: Sat, 20 Sep 2025 13:17:49 -0400 Subject: [PATCH] Added colorizer --- lua/plugins.lua | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/lua/plugins.lua b/lua/plugins.lua index 81f77da..dc090f6 100644 --- a/lua/plugins.lua +++ b/lua/plugins.lua @@ -63,6 +63,7 @@ vim.pack.add({ { src = "https://github.com/yetone/avante.nvim" }, { src = "https://github.com/alaviss/nim.nvim" }, { src = "https://github.com/glebzlat/arduino-nvim" }, + { src = "https://github.com/norcalli/nvim-colorizer.lua" }, }) if host == "xps13" then @@ -235,3 +236,16 @@ require('arduino-nvim').setup({ default_fqbn = "esp32:esp32:esp32", filetypes = {"arduino"} }) +require('colorizer').setup({ + '*', +}, { + RGB = true, + RRGGBB = true, + names = true, + RRGGBBAA = true, + rgb_fn = true, + hsl_fn = true, + css = true, + css_fn = true, + mode = 'background', +})