2025-01-17 19:32:10 +00:00
|
|
|
{
|
|
|
|
config,
|
|
|
|
lib,
|
|
|
|
...
|
|
|
|
}: let
|
|
|
|
inherit (lib.options) mkEnableOption mkOption;
|
|
|
|
inherit (lib.strings) hasPrefix;
|
|
|
|
inherit (lib.nvim.types) mkPluginSetupOption;
|
|
|
|
inherit (lib.nvim.types) hexColor;
|
|
|
|
in {
|
|
|
|
options.vim.mini.hues = {
|
|
|
|
enable = mkEnableOption "mini.hues";
|
|
|
|
setupOpts = mkPluginSetupOption "mini.hues" {
|
|
|
|
background = mkOption {
|
2025-01-19 09:19:34 +00:00
|
|
|
description = "The hex color for the background color of the color scheme, prefixed with #";
|
2025-01-17 19:32:10 +00:00
|
|
|
type = hexColor;
|
|
|
|
};
|
|
|
|
|
|
|
|
foreground = mkOption {
|
2025-01-19 09:19:34 +00:00
|
|
|
description = "The hex color for the foreground color of the color scheme, prefixed with #";
|
2025-01-17 19:32:10 +00:00
|
|
|
type = hexColor;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|