nixos-configuration/home/fzf.nix

9 lines
203 B
Nix
Raw Permalink Normal View History

2022-02-15 15:44:40 +01:00
{ ... }: {
programs.fzf = {
enable = true;
enableZshIntegration = true;
fileWidgetCommand = "fd --type f --no-ignore";
2022-02-18 12:13:34 +01:00
historyWidgetOptions = [ "--reverse" "--sort" "--exact" ];
2022-02-15 15:44:40 +01:00
};
}