Archived
1
0
Fork 0

zsh: add alias for make

This commit is contained in:
Christoph Heiss 2021-09-18 14:43:39 +02:00
parent 36f8897cf9
commit c2555f7e2f
Signed by: c8h4
GPG key ID: BDF5332444F0D447

View file

@ -96,6 +96,9 @@ unsetopt correct_all
alias gc='git commit --verbose --signoff'
alias gcan!='git commit --verbose --signoff --amend --date now --reset-author'
# Makefile
alias m='make'
# Rust
alias cb='cargo build'
alias cr='cargo run'