1
0
Fork 0
mirror of https://github.com/nix-community/nixvim.git synced 2025-11-12 13:36:06 +01:00

colorschemes/gruvbox-baby: migrate to by-name

This commit is contained in:
Heitor Augusto 2025-11-02 19:46:41 -03:00 committed by Gaétan Lepage
parent 7f8b78b746
commit 85488958c3
3 changed files with 0 additions and 1 deletions

View file

@ -1,28 +0,0 @@
{ 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;
};
}

View file

@ -2,7 +2,6 @@
imports = [
./cmp
./colorschemes/gruvbox-baby.nix
./colorschemes/gruvbox-material.nix
./colorschemes/gruvbox-material-nvim.nix
./colorschemes/kanagawa.nix