nixos-configuration/home/fzf.nix
Valentin Brandl 0addd25afa Fix typos
2022-02-18 12:13:34 +01:00

9 lines
203 B
Nix

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