fzf: Add command configuration
This commit is contained in:
parent
f4e71e6803
commit
ff0aedf9b3
2 changed files with 13 additions and 1 deletions
3
home.nix
3
home.nix
|
@ -13,6 +13,8 @@
|
||||||
|
|
||||||
./programs/bat.nix
|
./programs/bat.nix
|
||||||
|
|
||||||
|
./programs/fzf.nix
|
||||||
|
|
||||||
./programs/jq.nix
|
./programs/jq.nix
|
||||||
|
|
||||||
./programs/scripts.nix
|
./programs/scripts.nix
|
||||||
|
@ -37,7 +39,6 @@
|
||||||
exa
|
exa
|
||||||
fd
|
fd
|
||||||
ffmpeg
|
ffmpeg
|
||||||
fzf
|
|
||||||
gallery-dl
|
gallery-dl
|
||||||
glow
|
glow
|
||||||
hexyl
|
hexyl
|
||||||
|
|
11
programs/fzf.nix
Normal file
11
programs/fzf.nix
Normal 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";
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in a new issue