shell -> bash -> aliases: Added hx alias in case helix exec exists

This commit is contained in:
GaspardCulis 2024-05-31 22:52:02 +02:00
parent 6713a2422c
commit fa16fc2114
No known key found for this signature in database
GPG key ID: BC18146756955609

View file

@ -4,6 +4,10 @@ alias esp-idf-setup=". ~/.local/lib/esp-idf/export.sh"
alias steam="steam-runtime"
if command -v helix &> /dev/null; then
alias hx="helix"
fi
# Git
alias gs="git status"
alias ga="git add -p"