Last active
October 3, 2018 16:14
-
-
Save Stmol/93950c6df88c786e8c9f to your computer and use it in GitHub Desktop.
[My bash profile on Mac OS X] #settings
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
# export PATH="/usr/local/mysql/bin:$PATH" | |
export EDITOR='subl -w' | |
export CLICOLOR=1 | |
export LSCOLORS=gxBxhxDxfxhxhxhxhxcxcx | |
export HOMEBREW_GITHUB_API_TOKEN='' | |
PS1='➞ \w$ ' | |
alias ls='ls -1' | |
alias l='ls -lah' | |
alias ..='cd ..' | |
alias cls='clear' | |
alias pstat='sudo lsof -i -P | grep -i "listen"' | |
# alias mysql='mysql -u root -p' | |
# alias mongod='mongod --dbpath /usr/local/mongodb/data/db --logpath /usr/local/mongodb/data/log/mongo.log' | |
alias composer='composer.phar' | |
alias symfony='php app/console -s' | |
# alias console='php app/console' | |
alias chrome='open -a "/Applications/Google Chrome.app"' | |
alias edit='/Applications/Sublime\ Text.app/Contents/SharedSupport/bin/subl' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment