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

28 lines
581 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";
2023-02-15 23:33:23 +00:00
colors = {
fg = "#f8f8f2";
"fg+" = "#f8f8f2";
bg = "#282a36";
"bg+" = "#44475a";
hl = "#bd93f9";
"hl+" = "#bd93f9";
info = "#ffb86c";
prompt = "#50fa7b";
pointer = "#ff79c6";
marker = "#ff79c6";
spinner = "#ffb86c";
header = "#6272a4";
};
2022-06-13 14:57:21 +00:00
};
}