/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install.sh)"
brew install nvm
| alias sauce="source ~/.zshrc" | |
| alias gc="git checkout" | |
| alias gcb="git checkout -b" | |
| alias gp='git push -u origin $(git branch | grep \* | cut -d " " -f2)' | |
| alias glog="git log --pretty=oneline" | |
| alias gbd="git branch -d" | |
| alias gbD="git branch -D" | |
| alias gb="git branch" | |
| alias l="ls -la" |
| import { NativeModules } from 'react-native'; | |
| if (__DEV__) { | |
| NativeModules.DevSettings.setIsDebuggingRemotely(true) | |
| } | |