zsh: add e alias for edit (like how vim does it)

This commit is contained in:
PowerUser64 2021-11-07 21:36:39 -08:00
parent 465ac6040b
commit 5d26b501ea

6
.zshrc
View file

@ -51,8 +51,10 @@
# use nvim rather than vim if the command exists
[ -x "$(command -v nvim)" ] && alias vim='nvim' vimdiff='nvim -d'
alias vv="$EDITOR"
alias sedit='sudoedit'
alias \
vv="$EDITOR" \
e="$EDITOR" \
sedit='sudoedit' \
# I do this too much by accident smh my head
alias :q='exit' \