14 lines
171 B
Nix
14 lines
171 B
Nix
|
{ theme, ... }:
|
||
|
|
||
|
{
|
||
|
catppuccin.fzf = {
|
||
|
enable = true;
|
||
|
flavor = theme.flavor;
|
||
|
};
|
||
|
|
||
|
programs.fzf = {
|
||
|
enable = true;
|
||
|
enableFishIntegration = true;
|
||
|
};
|
||
|
}
|