Skip to content

Instantly share code, notes, and snippets.

@aldur
Created September 6, 2014 18:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save aldur/b72e2c8680e7d9243e38 to your computer and use it in GitHub Desktop.
Save aldur/b72e2c8680e7d9243e38 to your computer and use it in GitHub Desktop.
# vim:ft=zsh ts=2 sw=2 sts=2
# Aldur's zsh-theme
SEGMENT_SEPARATOR=' '
# Begin a segment
# Takes two arguments, foreground (a colour) and bold (bold or not bold).
prompt_segment() {
[[ $1 != "none " ]] && echo -n "%F{$1}"
[[ $2 == "bold" ]] && echo -n "%B"
echo -n "$3$SEGMENT_SEPARATOR"
echo -n "%f"
echo -n "%b"
}
# Prompt the user name
prompt_user() {
prompt_segment red bold "%n"
}
# Prompt the @ separating user and hostname
prompt_at() {
prompt_segment none false "@"
}
# Prompt the hostname
prompt_hostname() {
prompt_segment green bold "%m"
}
# Prompt colon:
prompt_colon() {
prompt_segment none false ":"
}
# Build the context (user@hostname:)
prompt_context() {
OLD_SEPARATOR=$SEGMENT_SEPARATOR
SEGMENT_SEPARATOR=''
prompt_user
prompt_at
prompt_hostname
SEGMENT_SEPARATOR=$OLD_SEPARATOR
prompt_colon
}
# Prompt cwd:
prompt_cwd() {
prompt_segment blue no "%~"
}
# Virtualenv: current working virtualenv
prompt_virtualenv() {
local virtualenv_path="$VIRTUAL_ENV"
if [[ -n $virtualenv_path && -n $VIRTUAL_ENV_DISABLE_PROMPT ]]; then
prompt_segment yellow no "#`basename $virtualenv_path`"
fi
}
# Git: branch/detached head, dirty status
prompt_git() {
local ref dirty mode repo_path color
repo_path=$(git rev-parse --git-dir 2>/dev/null)
if $(git rev-parse --is-inside-work-tree >/dev/null 2>&1); then
dirty=$(parse_git_dirty)
ref=$(git symbolic-ref HEAD 2> /dev/null) || ref="➦ $(git show-ref --head -s --abbrev |head -n1 2> /dev/null)"
if [[ -n $dirty ]]; then
color="yellow"
else
color="green"
fi
if [[ -e "${repo_path}/BISECT_LOG" ]]; then
mode=" <B>"
elif [[ -e "${repo_path}/MERGE_HEAD" ]]; then
mode=" >M<"
elif [[ -e "${repo_path}/rebase" || -e "${repo_path}/rebase-apply" || -e "${repo_path}/rebase-merge" || -e "${repo_path}/../.dotest" ]]; then
mode=" >R>"
fi
setopt promptsubst
autoload -Uz vcs_info
zstyle ':vcs_info:*' enable git
zstyle ':vcs_info:*' get-revision true
zstyle ':vcs_info:*' check-for-changes true
zstyle ':vcs_info:*' stagedstr '✚'
zstyle ':vcs_info:git:*' unstagedstr '●'
zstyle ':vcs_info:*' formats ' %u%c'
zstyle ':vcs_info:*' actionformats ' %u%c'
vcs_info
prompt_segment $color no "${ref/refs\/heads\// }${vcs_info_msg_0_%% }${mode}"
fi
}
# Prompt a symbol indicating the status:
# - was there an error
prompt_status() {
[[ $RETVAL -ne 0 ]] && prompt_segment magenta bold "✘"
}
# Prompt the newline and the actual prompt:
prompt_newline() {
prompt_segment blue bold "
»"
}
# Prompt the time
prompt_time() {
prompt_segment 105 no "[%*]"
}
# Main prompt:
build_prompt() {
RETVAL=$?
prompt_status
prompt_virtualenv
prompt_context
prompt_cwd
prompt_git
prompt_newline
}
build_right_prompt() {
prompt_time
}
RPROMPT='$(build_right_prompt)'
PROMPT='$(build_prompt)'
SPROMPT='zsh: correct %F{red}%R%f to %F{green}%r%f [nyae]? '
# LSCOLORS="exfxcxdxbxegedabagacad"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment