This commit is contained in:
GitHub Merge Button 2011-07-23 09:06:26 -07:00
commit b53d2bbde7
11 changed files with 214 additions and 8 deletions

View file

@ -1,6 +1,6 @@
# get the name of the branch we are on
function git_prompt_info() {
ref=$(git symbolic-ref HEAD 2> /dev/null) || return
ref=$(git rev-parse --abbrev-ref HEAD 2> /dev/null) || return
echo "$ZSH_THEME_GIT_PROMPT_PREFIX${ref#refs/heads/}$(parse_git_dirty)$ZSH_THEME_GIT_PROMPT_SUFFIX"
}

View file

@ -3,4 +3,4 @@
# Examples: http://rubyurl.com/ZXv
#
export GREP_OPTIONS='--color=auto'
export GREP_COLOR='1;32'
export GREP_COLOR='1;32'

View file

@ -4,7 +4,7 @@ HISTSIZE=10000
SAVEHIST=10000
setopt hist_ignore_dups # ignore duplication command history list
setopt share_history # share command history data
#setopt share_history # share command history data
setopt hist_verify
setopt inc_append_history

View file

@ -3,5 +3,3 @@ function rvm_prompt_info() {
ruby_version=$(~/.rvm/bin/rvm-prompt 2> /dev/null) || return
echo "($ruby_version)"
}