We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
when in open the neovim/vim i see the color on airline something like this
but when i do syn off and then syn on i see correct color like
syn off
syn on
The text was updated successfully, but these errors were encountered:
I found the reason for this, I have some modification on diff color-scheme
highlight DiffAdd cterm=bold ctermfg=0 ctermbg=2 gui=bold guifg=#232834 guibg=#A6CC70 highlight DiffDelete cterm=bold ctermfg=0 ctermbg=203 gui=bold guifg=#232834 guibg=#F27983 highlight DiffChange cterm=bold ctermfg=0 ctermbg=11 gui=bold guifg=#232834 guibg=#FFCC66 highlight DiffText cterm=bold ctermfg=0 ctermbg=32 gui=bold guifg=#232834 guibg=#77A8D9
highlight DiffAdd cterm=bold ctermfg=0 ctermbg=2 gui=bold guifg=#232834 guibg=#A6CC70
highlight DiffDelete cterm=bold ctermfg=0 ctermbg=203 gui=bold guifg=#232834 guibg=#F27983
highlight DiffChange cterm=bold ctermfg=0 ctermbg=11 gui=bold guifg=#232834 guibg=#FFCC66
highlight DiffText cterm=bold ctermfg=0 ctermbg=32 gui=bold guifg=#232834 guibg=#77A8D9
but I think that should not be the case ( adding modification for vim-diff color-scheme should not affect the airline theme color )
Sorry, something went wrong.
No branches or pull requests
when in open the neovim/vim i see the color on airline something like this
but when i do
syn off
and thensyn on
i see correct color likeThe text was updated successfully, but these errors were encountered: