rainbow icon indicating copy to clipboard operation
rainbow copied to clipboard

Getting an error for customization

Open norogoth opened this issue 4 years ago • 1 comments

I am getting an invalid expression error for

Plug 'luochen1990/rainbow'
let g:rainbow_active = 0 "set to 0 if you want to enable it later via :RainbowToggle
" Rainbow config
let g:rainbow_conf = {
\	'guifgs': ['#98D1FB', 'darkorange3', 'seagreen3', 'firebrick'],
\	}
\}

Obviously I can activate it later but currently just troubleshooting this error. I just want it to look nice with my nord theme.

norogoth avatar Oct 12 '21 20:10 norogoth

try following:

let g:rainbow_conf = {
\	'guifgs': ['#98D1FB', 'darkorange3', 'seagreen3', 'firebrick']
\}

luochen1990 avatar Oct 14 '21 07:10 luochen1990