Add colorizer
This commit is contained in:
parent
6b8327e38e
commit
fc96fc96fc
1 changed files with 17 additions and 0 deletions
17
nvim/lua/plugs/colorizer.lua
Normal file
17
nvim/lua/plugs/colorizer.lua
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
return {
|
||||
"norcalli/nvim-colorizer.lua",
|
||||
config = function()
|
||||
require("colorizer").setup({
|
||||
DEFAULT_OPTIONS = {
|
||||
RGB = true,
|
||||
RRGGBB = true,
|
||||
names = false,
|
||||
RRGGBBAA = true,
|
||||
css = true,
|
||||
css_fn = true,
|
||||
mode = "background",
|
||||
},
|
||||
"*",
|
||||
})
|
||||
end,
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue