mirror of
https://github.com/kristoferssolo/SoloVim.git
synced 2025-10-21 20:10:41 +00:00
Update nvim-colorizer
This commit is contained in:
parent
dca22b880b
commit
e0f8c76dd4
@ -3,4 +3,33 @@ if not status_ok then
|
||||
return
|
||||
end
|
||||
|
||||
colorizer.setup()
|
||||
colorizer.setup({
|
||||
filetypes = { "*" },
|
||||
user_default_options = {
|
||||
RGB = true, -- #RGB hex codes
|
||||
RRGGBB = true, -- #RRGGBB hex codes
|
||||
names = true, -- "Name" codes like Blue or blue
|
||||
RRGGBBAA = true, -- #RRGGBBAA hex codes
|
||||
AARRGGBB = true, -- 0xAARRGGBB 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
|
||||
-- Available modes for `mode`: foreground, background, virtualtext
|
||||
mode = "background", -- Set the display mode.
|
||||
-- Available methods are false / true / "normal" / "lsp" / "both"
|
||||
-- True is same as normal
|
||||
tailwind = true, -- Enable tailwind colors
|
||||
-- parsers can contain values used in |user_default_options|
|
||||
sass = {
|
||||
enable = true,
|
||||
parsers = { css },
|
||||
}, -- Enable sass colors
|
||||
virtualtext = "■",
|
||||
},
|
||||
-- all the sub-options of filetypes apply to buftypes
|
||||
buftypes = {},
|
||||
html = { names = false },
|
||||
markdown = { names = false },
|
||||
vimwiki = { names = false },
|
||||
})
|
||||
|
||||
@ -58,7 +58,7 @@ return packer.startup(function(use)
|
||||
use("goolord/alpha-nvim")
|
||||
use("folke/which-key.nvim")
|
||||
use("andweeb/presence.nvim")
|
||||
use("norcalli/nvim-colorizer.lua")
|
||||
use("NvChad/nvim-colorizer.lua")
|
||||
use("alvan/vim-closetag")
|
||||
use("tpope/vim-surround")
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user