enable dircolors

This commit is contained in:
Victor Ișan 2026-06-14 22:12:05 +02:00
parent 691f361b08
commit a6d034b370

View File

@ -7,38 +7,40 @@
}; };
home-manager.users.${myUser} = { home-manager.users.${myUser} = {
programs.starship = { programs = {
enable = true; dircolors.enable = true;
settings = { starship = {
add_newline = false; enable = true;
aws.disabled = true; settings = {
gcloud.disabled = true; add_newline = false;
line_break.disabled = true; aws.disabled = true;
gcloud.disabled = true;
line_break.disabled = true;
};
}; };
}; zsh = {
enable = true;
autosuggestion.enable = true;
syntaxHighlighting.enable = true;
history = {
save = 10000;
ignoreSpace = true;
ignoreDups = true;
extended = true;
share = true;
path = "$HOME/.zsh_history";
};
shellAliases = {
ls = "ls --color=yes";
la = "ls -a";
ll = "ls -l";
lla = "ls -la";
programs.zsh = { vim = "nvim";
enable = true; };
autosuggestion.enable = true;
syntaxHighlighting.enable = true;
history = {
save = 10000;
ignoreSpace = true;
ignoreDups = true;
extended = true;
share = true;
path = "$HOME/.zsh_history";
};
shellAliases = {
ls = "ls --color=yes";
la = "ls -a";
ll = "ls -l";
lla = "ls -la";
vim = "nvim";
}; };
}; };
home.stateVersion = config.system.stateVersion; home.stateVersion = config.system.stateVersion;
}; };
} }