configure fzf
This commit is contained in:
parent
4fb7bbe084
commit
600d3ddb51
1 changed files with 25 additions and 2 deletions
|
|
@ -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;
|
||||||
|
};
|
||||||
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue