1
0
Fork 0
dotfiles/programs/fzf.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";
};
}