add make aliases

This commit is contained in:
Daylin Morgan 2022-08-30 23:08:24 -05:00
parent 047480274b
commit 2201bd06f9
1 changed files with 6 additions and 1 deletions

View File

@ -23,7 +23,7 @@ if is-executable lsd; then
alias ls='lsd'
alias lt='lsd --tree --depth=3'
else
alias lt="tree -L 3"
alias lt="tree -L 3"
fi
is-executable lazygit && alias lg=lazygit
@ -54,3 +54,8 @@ alias zenith="zenith -d 0 -n 0"
alias pdm-start='eval "$(pdm shell)"'
# GNU make
alias mkrt='make -C $(git rev-parse --show-toplevel)'
alias mk="make"
alias mkc="make -C"