feat(zsh): add alias for git operations redirect to Neogit

This commit is contained in:
Price Hiller 2023-07-17 13:33:20 -05:00
parent 3be7f66396
commit 950827106c
Signed by: Price
SSH Key Fingerprint: SHA256:Y4S9ZzYphRn1W1kbJerJFO6GGsfu9O70VaBSxJO7dF8

View File

@ -10,6 +10,11 @@ fi
### Git ###
if command -v git >/dev/null 2>&1; then
if command -v nvim >/dev/null 2>&1; then
alias g="nvim -c 'Neogit'"
fi
alias gc="git commit"
alias gcm="git commit -m"
alias ga="git add"