Former-commit-id: 80f8ca3e9a
This commit is contained in:
Hadi
2024-06-25 22:20:17 +02:00
parent 24d0f22f8e
commit 9b31f3be8d
248 changed files with 12 additions and 12 deletions

View File

@@ -0,0 +1,24 @@
{ config, ... }: {
programs.fzf = {
enable = true;
enableZshIntegration = true;
colors = {
"fg+" = config.var.theme.colors.accentName;
"bg+" = "-1";
"fg" = "white";
"bg" = "-1";
"prompt" = "grey";
"pointer" = config.var.theme.colors.accentName;
};
defaultOptions = [
"--margin=1"
"--layout=reverse"
"--border=rounded"
"--info='hidden'"
"--header=''"
"--prompt='/ '"
"-i"
"--no-bold"
];
};
}