This commit is contained in:
Hadi
2024-10-06 18:49:52 +02:00
parent 23dcfd5290
commit 905cc9a885
75 changed files with 326 additions and 1325 deletions

View File

@@ -1,11 +1,4 @@
{
imports = [
./fzf.nix
./zsh.nix
./starship.nix
./zoxide.nix
./tmux.nix
./lazygit.nix
./eza.nix
];
imports =
[ ./fzf.nix ./zsh.nix ./starship.nix ./zoxide.nix ./tmux.nix ./eza.nix ];
}

View File

@@ -1,13 +0,0 @@
{ config, ... }: {
programs.lazygit = {
enable = true;
settings = {
gui.theme = {
ligthTheme = false;
activeBorderColor = [ "${config.var.theme.colors.accentName}" "bold" ];
inactiveBorderColor = [ "black" ];
selectedLineBgColor = [ "default" ];
};
};
};
}

View File

@@ -10,10 +10,10 @@
"$git_status"
"$character"
];
directory = { style = "#${config.var.theme.colors.accent}"; };
directory = { style = "#${config.lib.stylix.colors.base0D}"; };
character = {
success_symbol = "[](#${config.var.theme.colors.accent})";
success_symbol = "[](#${config.lib.stylix.colors.base0D})";
error_symbol = "[](red)";
vimcmd_symbol = "[](cyan)";
};