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