feat(zsh): add aliases for podman & docker

This commit is contained in:
Price Hiller 2024-10-03 03:39:46 -05:00
parent fa95a34f68
commit 18cc248aa2
Signed by: Price
GPG Key ID: C3FADDE7A8534BEB

View File

@ -51,6 +51,16 @@
alias gbc="git config remote.origin.fetch '+refs/heads/*:refs/remotes/origin/*'"
fi
### Podman ###
if command -v podman >/dev/null 2>&1; then
alias pd="podman"
fi
### Docker ###
if command -v docker >/dev/null 2>&1; then
alias dk="docker"
fi
### Mac ###
if [[ "$OSTYPE" = "darwin"* ]]; then
alias c="pbcopy"