feat(zsh): add aliases for podman & docker
This commit is contained in:
parent
fa95a34f68
commit
18cc248aa2
@ -51,6 +51,16 @@
|
|||||||
alias gbc="git config remote.origin.fetch '+refs/heads/*:refs/remotes/origin/*'"
|
alias gbc="git config remote.origin.fetch '+refs/heads/*:refs/remotes/origin/*'"
|
||||||
fi
|
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 ###
|
### Mac ###
|
||||||
if [[ "$OSTYPE" = "darwin"* ]]; then
|
if [[ "$OSTYPE" = "darwin"* ]]; then
|
||||||
alias c="pbcopy"
|
alias c="pbcopy"
|
||||||
|
Loading…
Reference in New Issue
Block a user