Created
February 21, 2015 23:50
-
-
Save tophyr/2a0e4d542e336aaa333c 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
alias ls='ls -G' | |
export LSCOLORS=gxfxcxdxbxegedabagacad | |
alias ..='cd ..' | |
export ANDROID_HOME="~/android-sdk-linux" | |
export PATH="~/bin:$ANDROID_HOME/tools:$ANDROID_HOME/platform-tools:$JAVA_HOME/bin:$PATH" | |
# set the number of open files to be 1024 | |
ulimit -S -n 1024 | |
export EDITOR='subl -w' | |
# cm/android build stuff | |
export USE_CCACHE=1 | |
function gocm() { | |
cd ~/cm_source | |
source build/envsetup.sh | |
add_lunch_combo cm_m7-userdebug | |
breakfast cm_m7-userdebug | |
export PS1="[\$TARGET_PRODUCT] \w$ " | |
} | |
export PS1="\u@\h \w$ " |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment