Last active
October 20, 2015 23:47
-
-
Save joestrong/cf644dab269a8826fbf8 to your computer and use it in GitHub Desktop.
Bash/Zsh aliases/config
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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