How to use custom pickers and defaults? #108
-
{
pickers = {
ccc.picker.custom_entries(require('neviraide-ui.themes.colors').palette),
},
win_opts = {
border = vim.g.b,
},
highlighter = {
auto_enable = true,
excludes = { 'neo-tree' },
lsp = true,
},
} if i do like this - it works for custom colors but not working for '#ff0000' format how to make highlight after |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
You should read the help. Default values are on {
pickers = {
ccc.picker.hex,
ccc.picker.css_rgb,
ccc.picker.css_hsl,
ccc.picker.css_hwb,
ccc.picker.css_lab,
ccc.picker.css_lch,
ccc.picker.css_oklab,
ccc.picker.css_oklch,
ccc.picker.custom_entries(require('neviraide-ui.themes.colors').palette),
},
} |
Beta Was this translation helpful? Give feedback.
-
thank you for answer. |
Beta Was this translation helpful? Give feedback.
You should read the help. Default values are on
:h ccc-option-pickers
.