25 lines
444 B
Nix
25 lines
444 B
Nix
{ ... }:
|
|
|
|
{
|
|
programs.fzf = {
|
|
enable = true;
|
|
enableBashIntegration = true;
|
|
enableZshIntegration = true;
|
|
colors = {
|
|
fg = "#cad3f5";
|
|
bg = "#24273a";
|
|
hl = "#ed8796";
|
|
"fg+" = "#c678dd";
|
|
"bg+" = "#363a4f";
|
|
"hl+" = "#ed8796";
|
|
info = "#c6a0f6";
|
|
prompt = "#c6a0f6";
|
|
pointer = "#f4dbd6";
|
|
marker = "#f4dbd6";
|
|
spinner = "#f4dbd6";
|
|
header = "#ed8796";
|
|
};
|
|
};
|
|
|
|
}
|