Former-commit-id: ab65fe342b
This commit is contained in:
Hadi
2024-10-07 10:13:21 +02:00
parent 18c30e5931
commit a33cf73ff1
75 changed files with 132 additions and 471 deletions

View File

@@ -1,15 +1,15 @@
{ config, ... }: {
{ config, lib, ... }: {
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;
# };
colors = lib.mkForce {
"fg+" = "#" + config.lib.stylix.colors.base0D;
"bg+" = "-1";
"fg" = "#" + config.lib.stylix.colors.base05;
"bg" = "-1";
"prompt" = "#" + config.lib.stylix.colors.base03;
"pointer" = "#" + config.lib.stylix.colors.base0D;
};
defaultOptions = [
"--margin=1"
"--layout=reverse"