2023-03-28 00:32:26 +00:00
|
|
|
{
|
2024-10-19 18:24:15 +00:00
|
|
|
config,
|
|
|
|
lib,
|
|
|
|
...
|
2024-11-05 04:55:40 +00:00
|
|
|
}:
|
|
|
|
let
|
2024-10-19 18:24:15 +00:00
|
|
|
inherit (config.rose-pine) sources;
|
2024-11-05 04:55:40 +00:00
|
|
|
|
2024-10-19 18:24:15 +00:00
|
|
|
cfg = config.programs.bat.rose-pine;
|
|
|
|
enable = cfg.enable && config.programs.bat.enable;
|
2024-11-05 04:55:40 +00:00
|
|
|
|
|
|
|
themeName = lib.rp.getKebabTheme cfg.flavor;
|
|
|
|
in
|
|
|
|
{
|
|
|
|
options.programs.bat.rose-pine = lib.rp.mkRosePineOpt { name = "bat"; };
|
2023-03-27 22:49:50 +00:00
|
|
|
|
2023-11-02 17:55:47 +00:00
|
|
|
config = lib.mkIf enable {
|
|
|
|
programs.bat = {
|
|
|
|
config.theme = themeName;
|
|
|
|
|
|
|
|
themes.${themeName} = {
|
2024-10-19 18:24:15 +00:00
|
|
|
src = sources.tm-theme;
|
|
|
|
file = "dist/themes/${themeName}.tmTheme";
|
2023-10-13 14:51:17 +00:00
|
|
|
};
|
2023-03-27 22:49:50 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|