Background is suddenly black
WhyNotHugo opened this issue · 4 comments
I recently updated to the latest version, and the background is suddenly black (was: #282828).
I've bisected the issue to c5aa919, but can't quite identify what resulted in this change.
I've temporarily worked around this by adding:
let g:jellybeans_overrides = {
\ 'background': { 'guibg': '282828' },
\}
I believe it's possible that previous versions used my terminal's default background, while new versions explicitly set it to black.
Yeah, bbd2cfc switched back to setting a background color (#151515). If you want to use your terminal's background color, you can use the transparent terminal overrides from the readme. Apologies for the config churn.
It's odd that bisecting pointed out a different commit (maybe I screwed up).
Anyway, maybe we can then document this and close the issue? Note that my terminal has no transparency (not even using a compositing WM), vim just used to pick up the terminal's default bg.
Yes, good point. The none
override can be used in any case where you want to use the default terminal background.
Thanks!