nixos-configuration/home/fzf.nix

9 lines
203 B
Nix
Raw Normal View History

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