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
The previous design is a bit confusing since the built-in palettes of g:gruvbox_material_palette will only change the foreground colors, while the background colors are controlled by g:gruvbox_material_background.
To make the design more reasonable and match the design of my other color schemes, I decide to split this option.
Sincere apologies for the inconvenience caused.
How to update my vimrc?
If g:gruvbox_material_palette is set to a string, for example 'material', simply replace this option with g:gruvbox_material_foreground.
letg:gruvbox_material_foreground='material'
If g:gruvbox_material_palette is set to a dictionary, replace it with g:gruvbox_material_colors_override
- Why?
The previous design is a bit confusing since the built-in palettes of `g:gruvbox_material_palette` will only change the foreground colors, while the background colors are controlled by `g:gruvbox_material_background`.
To make the design more reasonable and match the design of my other color schemes, I decide to split this option.
Sincere apologies for the inconvenience caused.
- How to update my vimrc?
If `g:gruvbox_material_palette` is set to a string, for example `'material'`, simply replace this option with `g:gruvbox_material_foreground`.
```vim
let g:gruvbox_material_foreground = 'material'
```
If `g:gruvbox_material_palette` is set to a dictionary, replace it with `g:gruvbox_material_colors_override`
```vim
let g:gruvbox_material_colors_override = {'bg0': ['#1d2021', '234'], 'bg2': ['#282828', '235']}
```
Ref: #130
Why?
The previous design is a bit confusing since the built-in palettes of
g:gruvbox_material_palette
will only change the foreground colors, while the background colors are controlled byg:gruvbox_material_background
.To make the design more reasonable and match the design of my other color schemes, I decide to split this option.
Sincere apologies for the inconvenience caused.
How to update my vimrc?
If
g:gruvbox_material_palette
is set to a string, for example'material'
, simply replace this option withg:gruvbox_material_foreground
.If
g:gruvbox_material_palette
is set to a dictionary, replace it withg:gruvbox_material_colors_override
The text was updated successfully, but these errors were encountered: