12 lines
260 B
Nix
12 lines
260 B
Nix
|
{ pkgs, ... }:
|
||
|
|
||
|
{
|
||
|
programs.fzf = {
|
||
|
enable = true;
|
||
|
|
||
|
defaultCommand = "fd --type file --hidden --no-ignore";
|
||
|
fileWidgetCommand = "fd --type file --hidden --no-ignore";
|
||
|
changeDirWidgetCommand = "fd --type directory --hidden --no-ignore";
|
||
|
};
|
||
|
}
|