refactor(zsh): make gl alias open Neovim Neogit log

This commit is contained in:
Price Hiller 2023-08-19 12:41:33 -05:00
parent c0e44fbe3d
commit 5139d315ca
Signed by: Price
SSH Key Fingerprint: SHA256:Y4S9ZzYphRn1W1kbJerJFO6GGsfu9O70VaBSxJO7dF8

View File

@ -28,7 +28,7 @@ if command -v git >/dev/null 2>&1; then
alias gsw="git switch"
alias gd="nvim -c 'DiffviewOpen' -R"
alias gr="git remote"
alias gl="git log"
alias gl="nvim -c 'call feedkeys(\":Neogit log\<CR>l\")'"
alias glo="git log --oneline"
alias gw="git worktree"
alias gwa="git worktree add"