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

29 lines
624 B
Nix
Raw Normal View History

2022-06-13 14:57:21 +00:00
{
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";
2023-02-15 23:33:23 +00:00
colors = {
2025-01-06 21:57:28 +00:00
fg = "-1";
"fg+" = "-1";
bg = "-1";
"bg+" = "-1";
hl = "#5fff87";
"hl+" = "#ffaf5f";
2023-02-15 23:33:23 +00:00
2025-01-06 21:57:28 +00:00
info = "#af87ff";
prompt = "#5fff87";
pointer = "#ff87d7";
marker = "#ff87d7";
spinner = "#ff87d7";
2023-02-15 23:33:23 +00:00
};
2023-02-27 16:51:39 +00:00
2023-12-16 12:07:53 +00:00
enableBashIntegration = false;
enableZshIntegration = false;
enableFishIntegration = false;
2022-06-13 14:57:21 +00:00
};
}