Skip to content

Instantly share code, notes, and snippets.

@joestrong
Last active October 20, 2015 23:47
Show Gist options
  • Save joestrong/cf644dab269a8826fbf8 to your computer and use it in GitHub Desktop.
Save joestrong/cf644dab269a8826fbf8 to your computer and use it in GitHub Desktop.
Bash/Zsh aliases/config
alias dc="docker-compose"
alias spec="./vendor/bin/phpspec"
alias behat="./vendor/bin/behat"
alias jasmine="./node_modules/jasmine/bin/jasmine.js"
alias ll="ls -lah"
# Run aliases file
if [ -f ~/.aliases ]; then
. ~/.aliases
fi
# Make git autocompletion nicer
zstyle ':completion:*:*' ignored-patterns '*ORIG_HEAD' '*FETCH_HEAD' '*MERGE_HEAD'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment