Fix statusline background higlights in gui

This commit is contained in:
Kenneth Benzie 2021-07-10 14:42:12 +01:00
parent 34073608c8
commit 9cc1ac8d87

View File

@ -17,7 +17,7 @@ let g:statusline#dark_grey = {'fg': ['244', '#808080'], 'bg': ['233', '#12121
function! s:hi(group, color) abort
execute 'highlight '.a:group
\.' ctermfg='.a:color['fg'][0].' ctermbg='.a:color['bg'][0]
\.' guifg='.a:color['fg'][1].' guibg='.a:color['fg'][1]
\.' guifg='.a:color['fg'][1].' guibg='.a:color['bg'][1]
endfunction
" StatusLineLight is shows the mode and cursor information, it is dynamically