mirror of
https://github.com/RichieCahill/dotfiles.git
synced 2026-04-17 13:08:19 -04:00
28 lines
487 B
Nix
28 lines
487 B
Nix
{
|
|
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 = {
|
|
"lrt" = "eza --icons -lsnew";
|
|
"ls" = "eza";
|
|
"ll" = "eza --long --group";
|
|
"la" = "eza --all";
|
|
};
|
|
};
|
|
}
|