added colorizer

This commit is contained in:
2026-01-13 11:35:48 -07:00
parent 470994a8e4
commit 11e0a7408e

View File

@@ -62,6 +62,30 @@ return {
},
},
-- Color preview for CSS, HTML, etc.
{
"norcalli/nvim-colorizer.lua",
event = { "BufReadPre", "BufNewFile" },
opts = {
"css",
"scss",
"html",
"javascript",
"typescript",
"javascriptreact",
"typescriptreact",
"vue",
"svelte",
"lua",
"yaml",
"toml",
"conf",
css = { rgb_fn = true, hsl_fn = true },
scss = { rgb_fn = true, hsl_fn = true },
html = { names = false },
},
},
-- Better terminal integration
{
"akinsho/toggleterm.nvim",