Link: https://github.com/nix-community/stylix/pull/1362 Reviewed-by: Flameopathic <64027365+Flameopathic@users.noreply.github.com> Reviewed-by: NAHO <90870942+trueNAHO@users.noreply.github.com>
24 lines
485 B
Nix
24 lines
485 B
Nix
{ mkTarget, ... }:
|
|
mkTarget {
|
|
name = "fzf";
|
|
humanName = "Fzf";
|
|
|
|
configElements =
|
|
{ colors }:
|
|
{
|
|
programs.fzf.colors = with colors.withHashtag; {
|
|
"bg" = base00;
|
|
"bg+" = base01;
|
|
"fg" = base04;
|
|
"fg+" = base06;
|
|
"header" = base0D;
|
|
"hl" = base0D;
|
|
"hl+" = base0D;
|
|
"info" = base0A;
|
|
"marker" = base0C;
|
|
"pointer" = base0C;
|
|
"prompt" = base0A;
|
|
"spinner" = base0C;
|
|
};
|
|
};
|
|
}
|