2024-05-21 14:53:46 -07:00
|
|
|
{ config, lib, ... }:
|
2024-04-07 02:15:18 -07:00
|
|
|
let
|
2024-05-13 13:33:16 -07:00
|
|
|
inherit (config.catppuccin) sources;
|
2024-04-07 02:15:18 -07:00
|
|
|
cfg = config.programs.git.delta.catppuccin;
|
|
|
|
enable = cfg.enable && config.programs.git.delta.enable;
|
|
|
|
in
|
|
|
|
{
|
2024-06-28 09:29:30 -07:00
|
|
|
options.programs.git.delta.catppuccin = lib.ctp.mkCatppuccinOpt { name = "delta"; };
|
2024-04-07 02:15:18 -07:00
|
|
|
|
|
|
|
config = lib.mkIf enable {
|
|
|
|
programs.git = {
|
2024-05-21 14:53:46 -07:00
|
|
|
includes = [ { path = "${sources.delta}/catppuccin.gitconfig"; } ];
|
2024-05-21 17:23:55 -07:00
|
|
|
delta.options.features = "catppuccin-${cfg.flavor}";
|
2024-04-07 02:15:18 -07:00
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|