Skip to content

Instantly share code, notes, and snippets.

@brianleroux
Created October 18, 2013 23:37
Show Gist options
  • Save brianleroux/7049833 to your computer and use it in GitHub Desktop.
Save brianleroux/7049833 to your computer and use it in GitHub Desktop.
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