Created
October 18, 2013 23:37
-
-
Save brianleroux/7049833 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
DGREY="\[\e[0;32m\]" | |
ENDCOLOR="\[\e[0m\]" | |
PS1="$DGREY#! $ENDCOLOR" | |
# allow vi nav on esc | |
set -o vi | |
# android business | |
export PATH=$PATH:~/Repo/android-sdk-macosx/tools | |
export PATH=$PATH:~/Repo/android-sdk-macosx/platform-tools | |
# quicky find in file | |
s() { grep "$1" -nHr . ; } | |
# quickly move to a repo | |
r() { cd ~/Repo/$1 ; } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment