2011-11-06 12:07:16 +00:00
|
|
|
|
# AVIT ZSH Theme
|
|
|
|
|
|
|
|
|
|
PROMPT='
|
2015-07-27 10:03:02 +00:00
|
|
|
|
$(_user_host)${_current_dir} $(git_prompt_info) $(_ruby_version)
|
2015-07-27 10:03:02 +00:00
|
|
|
|
%{$fg[$CARETCOLOR]%}▶%{$resetcolor%} '
|
2011-11-06 12:07:16 +00:00
|
|
|
|
|
2015-09-08 08:53:03 +00:00
|
|
|
|
PROMPT2='%{$fg[$CARETCOLOR]%}◀%{$reset_color%} '
|
2011-11-06 12:07:16 +00:00
|
|
|
|
|
|
|
|
|
RPROMPT='$(_vi_status)%{$(echotc UP 1)%}$(_git_time_since_commit) $(git_prompt_status) ${_return_status}%{$(echotc DO 1)%}'
|
|
|
|
|
|
2015-07-27 10:03:50 +00:00
|
|
|
|
local _current_dir="%{$fg_bold[blue]%}%3~%{$reset_color%} "
|
2015-07-27 15:53:36 +00:00
|
|
|
|
local _return_status="%{$fg_bold[red]%}%(?..⍉)%{$reset_color%}"
|
2011-11-06 12:07:16 +00:00
|
|
|
|
local _hist_no="%{$fg[grey]%}%h%{$reset_color%}"
|
|
|
|
|
|
2015-07-27 21:00:35 +00:00
|
|
|
|
function _current_dir() {
|
|
|
|
|
local _max_pwd_length="65"
|
|
|
|
|
if [[ $(echo -n $PWD | wc -c) -gt ${_max_pwd_length} ]]; then
|
|
|
|
|
echo "%{$fg_bold[blue]%}%-2~ ... %3~%{$reset_color%} "
|
|
|
|
|
else
|
|
|
|
|
echo "%{$fg_bold[blue]%}%~%{$reset_color%} "
|
|
|
|
|
fi
|
|
|
|
|
}
|
|
|
|
|
|
2011-11-06 12:07:16 +00:00
|
|
|
|
function _user_host() {
|
|
|
|
|
if [[ -n $SSH_CONNECTION ]]; then
|
|
|
|
|
me="%n@%m"
|
|
|
|
|
elif [[ $LOGNAME != $USER ]]; then
|
|
|
|
|
me="%n"
|
|
|
|
|
fi
|
|
|
|
|
if [[ -n $me ]]; then
|
|
|
|
|
echo "%{$fg[cyan]%}$me%{$reset_color%}:"
|
|
|
|
|
fi
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function _vi_status() {
|
|
|
|
|
if {echo $fpath | grep -q "plugins/vi-mode"}; then
|
|
|
|
|
echo "$(vi_mode_prompt_info)"
|
|
|
|
|
fi
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function _ruby_version() {
|
|
|
|
|
if {echo $fpath | grep -q "plugins/rvm"}; then
|
|
|
|
|
echo "%{$fg[grey]%}$(rvm_prompt_info)%{$reset_color%}"
|
2016-05-14 20:05:35 +00:00
|
|
|
|
elif {echo $fpath | grep -q "plugins/rbenv"}; then
|
|
|
|
|
echo "%{$fg[grey]%}$(rbenv_prompt_info)%{$reset_color%}"
|
2011-11-06 12:07:16 +00:00
|
|
|
|
fi
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
# Determine the time since last commit. If branch is clean,
|
|
|
|
|
# use a neutral color, otherwise colors will vary according to time.
|
|
|
|
|
function _git_time_since_commit() {
|
2014-07-02 17:22:32 +00:00
|
|
|
|
# Only proceed if there is actually a commit.
|
|
|
|
|
if git log -1 > /dev/null 2>&1; then
|
|
|
|
|
# Get the last commit.
|
|
|
|
|
last_commit=$(git log --pretty=format:'%at' -1 2> /dev/null)
|
|
|
|
|
now=$(date +%s)
|
|
|
|
|
seconds_since_last_commit=$((now-last_commit))
|
|
|
|
|
|
|
|
|
|
# Totals
|
|
|
|
|
minutes=$((seconds_since_last_commit / 60))
|
|
|
|
|
hours=$((seconds_since_last_commit/3600))
|
|
|
|
|
|
|
|
|
|
# Sub-hours and sub-minutes
|
|
|
|
|
days=$((seconds_since_last_commit / 86400))
|
|
|
|
|
sub_hours=$((hours % 24))
|
|
|
|
|
sub_minutes=$((minutes % 60))
|
|
|
|
|
|
|
|
|
|
if [ $hours -gt 24 ]; then
|
|
|
|
|
commit_age="${days}d"
|
|
|
|
|
elif [ $minutes -gt 60 ]; then
|
|
|
|
|
commit_age="${sub_hours}h${sub_minutes}m"
|
|
|
|
|
else
|
|
|
|
|
commit_age="${minutes}m"
|
2011-11-06 12:07:16 +00:00
|
|
|
|
fi
|
2014-07-02 17:22:32 +00:00
|
|
|
|
|
|
|
|
|
color=$ZSH_THEME_GIT_TIME_SINCE_COMMIT_NEUTRAL
|
|
|
|
|
echo "$color$commit_age%{$reset_color%}"
|
2011-11-06 12:07:16 +00:00
|
|
|
|
fi
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if [[ $USER == "root" ]]; then
|
|
|
|
|
CARETCOLOR="red"
|
|
|
|
|
else
|
|
|
|
|
CARETCOLOR="white"
|
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
MODE_INDICATOR="%{$fg_bold[yellow]%}❮%{$reset_color%}%{$fg[yellow]%}❮❮%{$reset_color%}"
|
|
|
|
|
|
|
|
|
|
ZSH_THEME_GIT_PROMPT_PREFIX="%{$fg[green]%}"
|
|
|
|
|
ZSH_THEME_GIT_PROMPT_SUFFIX="%{$reset_color%}"
|
|
|
|
|
|
|
|
|
|
ZSH_THEME_GIT_PROMPT_DIRTY=" %{$fg[red]%}✗%{$reset_color%}"
|
|
|
|
|
ZSH_THEME_GIT_PROMPT_CLEAN=" %{$fg[green]%}✔%{$reset_color%}"
|
|
|
|
|
ZSH_THEME_GIT_PROMPT_ADDED="%{$fg[green]%}✚ "
|
|
|
|
|
ZSH_THEME_GIT_PROMPT_MODIFIED="%{$fg[yellow]%}⚑ "
|
|
|
|
|
ZSH_THEME_GIT_PROMPT_DELETED="%{$fg[red]%}✖ "
|
|
|
|
|
ZSH_THEME_GIT_PROMPT_RENAMED="%{$fg[blue]%}▴ "
|
|
|
|
|
ZSH_THEME_GIT_PROMPT_UNMERGED="%{$fg[cyan]%}§ "
|
2015-07-27 10:03:50 +00:00
|
|
|
|
ZSH_THEME_GIT_PROMPT_UNTRACKED="%{$fg[white]%}◒ "
|
2011-11-06 12:07:16 +00:00
|
|
|
|
|
|
|
|
|
# Colors vary depending on time lapsed.
|
|
|
|
|
ZSH_THEME_GIT_TIME_SINCE_COMMIT_SHORT="%{$fg[green]%}"
|
|
|
|
|
ZSH_THEME_GIT_TIME_SHORT_COMMIT_MEDIUM="%{$fg[yellow]%}"
|
|
|
|
|
ZSH_THEME_GIT_TIME_SINCE_COMMIT_LONG="%{$fg[red]%}"
|
2015-07-27 10:03:50 +00:00
|
|
|
|
ZSH_THEME_GIT_TIME_SINCE_COMMIT_NEUTRAL="%{$fg[white]%}"
|
2011-11-06 12:07:16 +00:00
|
|
|
|
|
|
|
|
|
# LS colors, made with http://geoff.greer.fm/lscolors/
|
|
|
|
|
export LSCOLORS="exfxcxdxbxegedabagacad"
|
|
|
|
|
export LS_COLORS='di=34;40:ln=35;40:so=32;40:pi=33;40:ex=31;40:bd=34;46:cd=34;43:su=0;41:sg=0;46:tw=0;42:ow=0;43:'
|
|
|
|
|
export GREP_COLOR='1;33'
|