monokai.nvim icon indicating copy to clipboard operation
monokai.nvim copied to clipboard

Use lua API function nvim_set_hl

Open doubleloop opened this issue 3 years ago • 0 comments

Requires nvim 0.7+

This may break existing customizations introduced in #12 lua``` { style = 'bold', }

becomes
lua```
{
    bold = true,
}

Note (from docs):

The fg and bg keys also accept the string values "fg" or "bg" which act as aliases to the corresponding foreground and background values of the Normal group. If the Normal group has not been defined, using these values results in an error.

doubleloop avatar Nov 06 '22 23:11 doubleloop