2024-04-17 18:50:59 -04:00
|
|
|
{
|
|
|
|
programs.zsh = {
|
|
|
|
enable = true;
|
|
|
|
syntaxHighlighting.enable = true;
|
|
|
|
history.size = 10000;
|
|
|
|
oh-my-zsh = {
|
|
|
|
enable = true;
|
|
|
|
plugins = [
|
|
|
|
"git"
|
|
|
|
"docker"
|
|
|
|
"docker-compose"
|
|
|
|
"colored-man-pages"
|
|
|
|
"rust"
|
|
|
|
"systemd"
|
|
|
|
"tmux"
|
|
|
|
"ufw"
|
|
|
|
"z"
|
|
|
|
];
|
|
|
|
};
|
|
|
|
shellAliases = {
|
|
|
|
"sgc" = "sudo git -C /root/dotfiles";
|
|
|
|
|
|
|
|
## Utilities
|
|
|
|
"lrt" = "eza --icons -lsnew";
|
|
|
|
"ls" = "eza";
|
2024-05-27 15:35:41 -04:00
|
|
|
"ll" = "eza --long --group";
|
2024-06-01 10:51:25 -04:00
|
|
|
"la" = "eza --all";
|
|
|
|
|
|
|
|
"rspace" = "'for f in *\ *; do mv \"$f\" \"\${f// /_}\"; done'";
|
2024-04-17 18:50:59 -04:00
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|