nixos-configuration/home/fzf.nix

9 lines
203 B
Nix

{ ... }: {
programs.fzf = {
enable = true;
enableZshIntegration = true;
fileWidgetCommand = "fd --type f --no-ignore";
historyWidgedOptions = [ "--reverse" "--sort" "--exact" ];
};
}