diff options
Diffstat (limited to '')
-rw-r--r-- | .zshrc | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/.zshrc b/.zshrc index bdb1933d..354a5dae 100644 --- a/.zshrc +++ b/.zshrc @@ -120,10 +120,12 @@ alias Syu='pacman -Syu' alias Ss='pacman -Ss' alias p='pacman' -compdef hub=git -alias git=hub -alias g=hub +if which hub &> /dev/null; then + compdef hub=git + alias git=hub +fi +alias g=git alias ga='git add' alias gb='git branch' alias gc='git commit' |