You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For many faces (other than default), the background is set to zenburn-bg. This makes it pretty verbose to update those faces them when customizing the default background.
Another option I currently use is the following:
(zenburn-with-color-variables
(mapc
(lambda (face)
(when (eq (face-attribute face :background) zenburn-bg)
(set-face-attribute face nil:background'unspecified)))
(face-list)))
Which obviously doesn't work unless run after all the packages are loaded.
The text was updated successfully, but these errors were encountered:
For many faces (other than
default
), the background is set tozenburn-bg
. This makes it pretty verbose to update those faces them when customizing the default background.Another option I currently use is the following:
Which obviously doesn't work unless run after all the packages are loaded.
The text was updated successfully, but these errors were encountered: