mirror of
https://github.com/nix-community/nixvim.git
synced 2025-08-18 08:18:38 +02:00
colorschemes/gruvbox-baby: init
Signed-off-by: saygo-png <saygo.mail@proton.me>
This commit is contained in:
parent
a16c89c175
commit
9706de8578
3 changed files with 72 additions and 0 deletions
27
plugins/colorschemes/gruvbox-baby.nix
Normal file
27
plugins/colorschemes/gruvbox-baby.nix
Normal file
|
@ -0,0 +1,27 @@
|
|||
{ 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;
|
||||
|
||||
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;
|
||||
};
|
||||
}
|
|
@ -12,6 +12,7 @@
|
|||
./colorschemes/everforest.nix
|
||||
./colorschemes/github-theme.nix
|
||||
./colorschemes/gruvbox.nix
|
||||
./colorschemes/gruvbox-baby.nix
|
||||
./colorschemes/gruvbox-material.nix
|
||||
./colorschemes/kanagawa.nix
|
||||
./colorschemes/kanagawa-paper.nix
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue