fish: Add an alias for opening fugitive in neovim

This gives us access to git status in fugitive easily to carry out
further git operations.
This commit is contained in:
Sanchayan Maity 2021-04-07 20:26:07 +05:30
parent 915a5427e3
commit cfea08a09a
1 changed files with 3 additions and 0 deletions

View File

@ -47,6 +47,9 @@ alias et="emacsclient ~/org/todo.org"
alias vg="vgrep"
alias vs="vgrep -s"
# Open fugitive with nvim directly
alias gn="nvim -c Git"
# Branch (b)
alias gb='git branch'
alias gba='git branch --all --verbose'