1
0
Fork 0
dotfiles/home/programs/fzf.nix

12 lines
260 B
Nix
Raw Normal View History

2022-06-13 14:57:21 +00:00
{ 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";
};
}