configure fzf

This commit is contained in:
Sean Kovacs 2026-04-09 10:00:49 -04:00
commit 600d3ddb51
Signed by: sckova
GPG key ID: 00F325187C68651A

View file

@ -1,7 +1,6 @@
{ {
config, config,
pkgs, pkgs,
lib,
... ...
}: }:
{ {
@ -20,7 +19,6 @@
wget wget
ripgrep ripgrep
ncdu ncdu
fzf
wl-clipboard wl-clipboard
rclone rclone
waypipe waypipe
@ -78,5 +76,30 @@
enableFishIntegration = true; enableFishIntegration = true;
}; };
lazysql.enable = true; lazysql.enable = true;
fzf = {
enable = true;
enableFishIntegration = true;
defaultOptions = [
"--height 40%"
"--border"
];
colors = with config.scheme.withHashtag; {
bg = base00;
"bg+" = base01;
border = base03;
fg = base05;
"fg+" = base05;
header = base08;
hl = base08;
"hl+" = base08;
info = config.scheme.withHashtag.${config.colors.accent};
label = base05;
marker = base07;
pointer = base06;
prompt = config.scheme.withHashtag.${config.colors.accent};
"selected-bg" = base02;
spinner = base06;
};
};
}; };
} }