zsh: Update m alias

Update the `m` alias to use a Makefile within the notes directory if
there is one, otherwise default to one in the current directory.
This commit is contained in:
Oliver Davies 2020-08-17 10:27:58 +01:00
parent e2285680b9
commit 1117fbd76d

View file

@ -1,6 +1,6 @@
alias c="clear"
alias l="ls -lah"
alias m=make
alias m="if [[ -f .notes/Makefile ]]; then make -f .notes/Makefile; else make; fi"
alias mkdir="mkdir -p"
alias s=symfony
alias v=vagrant