Created
March 12, 2019 21:14
-
-
Save colinyoung/3f4e7ef3fdd500dafe64abe00d32458e to your computer and use it in GitHub Desktop.
bash_profile
This file contains hidden or 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 NVM_DIR="$HOME/.nvm" | |
. "/usr/local/opt/nvm/nvm.sh" | |
alias gs="git status" | |
alias gco="git checkout" | |
alias gdelmerged='git branch --merged | egrep -v "(^\*|master|develop)" | xargs git branch -d' | |
alias gitunpushed="git log --branches --not --remotes" | |
[ -f /usr/local/etc/bash_completion ] && . /usr/local/etc/bash_completion | |
# opam configuration | |
test -r /Users/colinyoung/.opam/opam-init/init.sh && . /Users/colinyoung/.opam/opam-init/init.sh > /dev/null 2> /dev/null || true | |
export PATH=$PATH:/Users/colinyoung/Apps/flutter/bin | |
export PATH="/usr/local/opt/mysql-client/bin:$PATH" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment