1
0
Fork 0
mirror of https://github.com/nix-community/nixvim.git synced 2025-11-08 11:36:07 +01:00
nixvim/plugins/colorschemes/gruvbox-baby.nix
saygo-png a96854d3ea colorschemes/gruvbox-baby: init
Signed-off-by: saygo-png <saygo.mail@proton.me>
2025-08-06 15:58:43 +00:00

28 lines
647 B
Nix

{ lib, ... }:
lib.nixvim.plugins.mkNeovimPlugin {
name = "gruvbox-baby";
maintainers = [ lib.maintainers.saygo-png ];
isColorscheme = true;
# Despite being a lua plugin, it's configured via globals without a setup function.
callSetup = false;
hasLuaConfig = false;
settingsExample = {
function_style = "NONE";
keyword_style = "italic";
highlights = {
Normal = {
fg = "#123123";
bg = "NONE";
style = "underline";
};
};
telescope_theme = 1;
transparent_mode = 1;
};
extraConfig = cfg: {
globals = lib.nixvim.applyPrefixToAttrs "gruvbox_baby_" cfg.settings;
};
}