refactor(zsh): make git diff alias open nvim Diffview

This commit is contained in:
Price Hiller 2023-08-02 02:08:35 -05:00
parent e60bf03390
commit 79760fb4d2
No known key found for this signature in database

View File

@ -26,7 +26,7 @@ if command -v git >/dev/null 2>&1; then
alias gst="git stash" alias gst="git stash"
alias gstc="git stash clear" alias gstc="git stash clear"
alias gsw="git switch" alias gsw="git switch"
alias gd="git diff" alias gd="nvim -c 'DiffviewOpen' -R"
alias gr="git remote" alias gr="git remote"
alias gl="git log" alias gl="git log"
alias glo="git log --oneline" alias glo="git log --oneline"