diff options
| author | Ben Beltran <ben@freshout.us> | 2012-10-19 12:02:22 -0500 |
|---|---|---|
| committer | Ben Beltran <ben@freshout.us> | 2012-10-19 12:02:22 -0500 |
| commit | b600a224cb90d0fffea8e1123992dadb0632dc96 (patch) | |
| tree | 3946fee0788afe474f315f61a23b4555fa38a956 | |
| parent | 8b262e07e11a7081e5dbd18bfbb63f0fc86d6509 (diff) | |
Add my zshrc
| -rw-r--r-- | bash_profile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/bash_profile b/bash_profile index ab591e3..df81cbe 100644 --- a/bash_profile +++ b/bash_profile @@ -8,16 +8,16 @@ export TERM=screen-256color #git function function _set_git_envar_info() { - GIT_BRANCH="" + GIT_BRANCH="" GIT_PREFIX="" - GIT_STATE="" + GIT_STATE="" CHECK_SHIT="lol" RVM_COMMAND=$(rvm-prompt) if [[ $RVM_COMMAND == "" ]] then RVM_COMMAND="system" fi - if [[ $(which git 2> /dev/null) ]] + if [ -f `which git` ]; then local STATUS STATUS=$(git status 2>/dev/null) |