Add zshrc

This commit is contained in:
joachimschmidt557 2022-12-20 10:00:37 +01:00
parent e372d73343
commit 9f4115442d
No known key found for this signature in database
GPG key ID: E0B575BE2884ACC5
2 changed files with 22 additions and 1 deletions

16
zshrc Normal file
View file

@ -0,0 +1,16 @@
#!/usr/bin/env zsh
# Git aliases
alias gs="git status"
alias gp="git pull"
alias gd="git diff"
alias gc="git commit"
alias gsm="git switch master || git switch main || git switch trunk"
alias gfo="git fetch origin"
launch() {
$@ & ; disown ; exit
}
path+=("$HOME/src/zig/build/stage3/bin")
export PATH