1
0
Fork 0

fzf: Add command configuration

This commit is contained in:
Daniel Kempkens 2022-06-13 16:57:21 +02:00
parent f4e71e6803
commit ff0aedf9b3
2 changed files with 13 additions and 1 deletions

View file

@ -13,6 +13,8 @@
./programs/bat.nix
./programs/fzf.nix
./programs/jq.nix
./programs/scripts.nix
@ -37,7 +39,6 @@
exa
fd
ffmpeg
fzf
gallery-dl
glow
hexyl

11
programs/fzf.nix Normal file
View file

@ -0,0 +1,11 @@
{ 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";
};
}