1
0
Fork 0
mirror of https://github.com/nix-community/nixvim.git synced 2025-11-23 02:39:42 +01:00

colorschemes/gruvbox-baby: migrate to by-name

This commit is contained in:
Heitor Augusto 2025-11-02 19:46:41 -03:00
parent 712ee8b31d
commit e943cb743c
No known key found for this signature in database
GPG key ID: 3EEC05B0024AF8A4
3 changed files with 0 additions and 1 deletions

View file

@ -1,44 +0,0 @@
_: {
empty = {
colorschemes.gruvbox-baby.enable = true;
};
defaults = {
colorschemes.gruvbox-baby = {
enable = true;
settings = {
background_color = "medium";
transparent_mode = 0;
comment_style = "italic";
keyword_style = "italic";
string_style = "nocombine";
function_style = "bold";
variable_style = "NONE";
highlights.__empty = { };
color_overrides.__empty = { };
use_original_palette = 0;
};
};
};
example = {
colorschemes.gruvbox-baby = {
enable = true;
settings = {
function_style = "NONE";
keyword_style = "italic";
highlights = {
Normal = {
fg = "#123123";
bg = "NONE";
style = "underline";
};
};
telescope_theme = 1;
transparent_mode = 1;
};
};
};
}