Created
April 10, 2018 01:31
-
-
Save ducito/3e680bbbb6951008ad2c02f56bcb0d39 to your computer and use it in GitHub Desktop.
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
# ===|| BEGIN EXPORT ||=== | |
export PATH=/usr/local/bin:$PATH | |
export ANDROID_NDK="/Users/`whoami`/Library/Android/sdk/ndk-bundle" | |
export PATH="$HOME/Library/Android/sdk/tools:$PATH" | |
export PATH="$HOME/Library/Android/sdk/platform-tools:$PATH" | |
export LC_ALL=en_US.UTF-8 | |
export LANG=en_US.UTF-8 | |
# ===|| END EXPORT ||=== | |
# ===|| BEGIN ALIAS ||=== | |
alias ws="cd /Users/`whoami`/Documents/Workspace" | |
alias proj="cd ~/Projects/" | |
alias sojo="cd ~/Projects/vibe-ios-sojo-travel" | |
alias podin="pod install --verbose" | |
alias podup="pod update --verbose" | |
alias cartup="carthage update --platform iOS --cache-builds" | |
alias cartboot="carthage bootstrap --platform ios --cache-builds" | |
alias cleanxcode="sudo rm -rfd ~/Library/Developer/Xcode/DerivedData/* && sudo rm -rfd ~/Library/Caches/com.apple.dt.Xcode/*" | |
# Fastlane | |
alias fltest="fastlane test" | |
# UUID | |
#alias uuid="uuidgen | tr "[:upper:]" "[:lower:]"" | |
# GIT | |
alias amd="git amd" | |
alias add="git add ." | |
# ===|| END ALIAS ||=== | |
if which rbenv > /dev/null; then eval "$(rbenv init -)"; fi | |
export NVM_DIR="$HOME/.nvm" | |
[ -s "$NVM_DIR/nvm.sh" ] && . "$NVM_DIR/nvm.sh" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment