2012-02-01 04:37:51 +00:00
|
|
|
|
#
|
2012-08-06 20:52:38 +00:00
|
|
|
|
# A simple theme that displays relevant, contextual information.
|
2012-02-01 04:37:51 +00:00
|
|
|
|
#
|
|
|
|
|
# Authors:
|
|
|
|
|
# Sorin Ionescu <sorin.ionescu@gmail.com>
|
|
|
|
|
#
|
|
|
|
|
# Screenshots:
|
2015-05-19 21:39:00 +00:00
|
|
|
|
# http://i.imgur.com/nrGV6pg.png
|
2012-02-01 04:37:51 +00:00
|
|
|
|
#
|
|
|
|
|
|
2015-05-19 21:14:36 +00:00
|
|
|
|
#
|
2015-05-19 21:19:21 +00:00
|
|
|
|
# 16 Terminal Colors
|
2015-05-19 21:14:36 +00:00
|
|
|
|
# -- ---------------
|
|
|
|
|
# 0 black
|
|
|
|
|
# 1 red
|
|
|
|
|
# 2 green
|
|
|
|
|
# 3 yellow
|
|
|
|
|
# 4 blue
|
|
|
|
|
# 5 magenta
|
|
|
|
|
# 6 cyan
|
|
|
|
|
# 7 white
|
|
|
|
|
# 8 bright black
|
|
|
|
|
# 9 bright red
|
|
|
|
|
# 10 bright green
|
|
|
|
|
# 11 bright yellow
|
|
|
|
|
# 12 bright blue
|
|
|
|
|
# 13 bright magenta
|
|
|
|
|
# 14 bright cyan
|
|
|
|
|
# 15 bright white
|
|
|
|
|
#
|
|
|
|
|
|
2012-09-08 22:47:57 +00:00
|
|
|
|
# Load dependencies.
|
|
|
|
|
pmodload 'helper'
|
|
|
|
|
|
2012-09-25 04:54:49 +00:00
|
|
|
|
function prompt_sorin_pwd {
|
|
|
|
|
local pwd="${PWD/#$HOME/~}"
|
|
|
|
|
|
|
|
|
|
if [[ "$pwd" == (#m)[/~] ]]; then
|
|
|
|
|
_prompt_sorin_pwd="$MATCH"
|
2012-09-26 20:51:32 +00:00
|
|
|
|
unset MATCH
|
2012-09-25 04:54:49 +00:00
|
|
|
|
else
|
2014-10-06 20:54:21 +00:00
|
|
|
|
_prompt_sorin_pwd="${${${${(@j:/:M)${(@s:/:)pwd}##.#?}:h}%/}//\%/%%}/${${pwd:t}//\%/%%}"
|
2012-09-25 04:54:49 +00:00
|
|
|
|
fi
|
|
|
|
|
}
|
|
|
|
|
|
2015-02-23 00:51:09 +00:00
|
|
|
|
function prompt_sorin_git_info {
|
2015-05-31 20:50:03 +00:00
|
|
|
|
if (( _prompt_sorin_precmd_async_pid > 0 )); then
|
|
|
|
|
# Append Git status.
|
|
|
|
|
if [[ -s "$_prompt_sorin_precmd_async_data" ]]; then
|
|
|
|
|
alias typeset='typeset -g'
|
|
|
|
|
source "$_prompt_sorin_precmd_async_data"
|
|
|
|
|
RPROMPT+='${git_info:+${(e)git_info[status]}}'
|
|
|
|
|
unalias typeset
|
|
|
|
|
fi
|
2015-02-23 00:51:09 +00:00
|
|
|
|
|
2015-05-31 20:50:03 +00:00
|
|
|
|
# Reset PID.
|
|
|
|
|
_prompt_sorin_precmd_async_pid=0
|
2015-02-23 00:51:09 +00:00
|
|
|
|
|
2015-05-31 20:50:03 +00:00
|
|
|
|
# Redisplay prompt.
|
|
|
|
|
zle && zle reset-prompt
|
|
|
|
|
fi
|
2015-02-23 00:51:09 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function prompt_sorin_precmd_async {
|
|
|
|
|
# Get Git repository information.
|
|
|
|
|
if (( $+functions[git-info] )); then
|
|
|
|
|
git-info
|
|
|
|
|
typeset -p git_info >! "$_prompt_sorin_precmd_async_data"
|
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
# Signal completion to parent process.
|
2015-05-31 20:46:42 +00:00
|
|
|
|
kill -WINCH $$
|
2015-02-23 00:51:09 +00:00
|
|
|
|
}
|
|
|
|
|
|
2012-03-23 18:57:51 +00:00
|
|
|
|
function prompt_sorin_precmd {
|
2011-10-11 02:16:12 +00:00
|
|
|
|
setopt LOCAL_OPTIONS
|
|
|
|
|
unsetopt XTRACE KSH_ARRAYS
|
2011-07-18 00:15:51 +00:00
|
|
|
|
|
2012-09-25 04:54:49 +00:00
|
|
|
|
# Format PWD.
|
|
|
|
|
prompt_sorin_pwd
|
|
|
|
|
|
2015-02-23 00:51:09 +00:00
|
|
|
|
# Define prompts.
|
2015-05-19 21:19:21 +00:00
|
|
|
|
RPROMPT='${editor_info[overwrite]}%(?:: %F{1}⏎%f)${VIM:+" %B%F{6}V%f%b"}'
|
2015-02-23 00:51:09 +00:00
|
|
|
|
|
|
|
|
|
# Kill the old process of slow commands if it is still running.
|
|
|
|
|
if (( _prompt_sorin_precmd_async_pid > 0 )); then
|
2015-05-31 20:47:16 +00:00
|
|
|
|
kill -KILL "$_prompt_sorin_precmd_async_pid" &>/dev/null
|
2011-09-05 04:37:36 +00:00
|
|
|
|
fi
|
2015-02-23 00:51:09 +00:00
|
|
|
|
|
|
|
|
|
# Compute slow commands in the background.
|
2015-05-31 20:46:42 +00:00
|
|
|
|
trap prompt_sorin_git_info WINCH
|
2015-02-23 00:51:09 +00:00
|
|
|
|
prompt_sorin_precmd_async &!
|
|
|
|
|
_prompt_sorin_precmd_async_pid=$!
|
2011-09-05 04:37:36 +00:00
|
|
|
|
}
|
2011-07-18 00:15:51 +00:00
|
|
|
|
|
2012-03-23 18:57:51 +00:00
|
|
|
|
function prompt_sorin_setup {
|
2011-10-11 02:16:12 +00:00
|
|
|
|
setopt LOCAL_OPTIONS
|
|
|
|
|
unsetopt XTRACE KSH_ARRAYS
|
|
|
|
|
prompt_opts=(cr percent subst)
|
2015-02-23 00:51:09 +00:00
|
|
|
|
_prompt_sorin_precmd_async_pid=0
|
|
|
|
|
_prompt_sorin_precmd_async_data="${TMPPREFIX}-prompt_sorin_data"
|
2011-09-05 04:37:36 +00:00
|
|
|
|
|
2012-08-06 20:52:38 +00:00
|
|
|
|
# Load required functions.
|
2011-09-05 04:37:36 +00:00
|
|
|
|
autoload -Uz add-zsh-hook
|
2012-08-06 20:52:38 +00:00
|
|
|
|
|
|
|
|
|
# Add hook for calling git-info before each command.
|
2011-09-05 04:37:36 +00:00
|
|
|
|
add-zsh-hook precmd prompt_sorin_precmd
|
|
|
|
|
|
2012-12-22 22:48:19 +00:00
|
|
|
|
# Set editor-info parameters.
|
2015-05-19 21:14:36 +00:00
|
|
|
|
zstyle ':prezto:module:editor:info:completing' format '%B%F{7}...%f%b'
|
|
|
|
|
zstyle ':prezto:module:editor:info:keymap:primary' format ' %B%F{1}❯%F{3}❯%F{2}❯%f%b'
|
|
|
|
|
zstyle ':prezto:module:editor:info:keymap:primary:overwrite' format ' %F{3}♺%f'
|
|
|
|
|
zstyle ':prezto:module:editor:info:keymap:alternate' format ' %B%F{2}❮%F{3}❮%F{1}❮%f%b'
|
2012-12-22 22:48:19 +00:00
|
|
|
|
|
|
|
|
|
# Set git-info parameters.
|
|
|
|
|
zstyle ':prezto:module:git:info' verbose 'yes'
|
2015-05-19 21:14:36 +00:00
|
|
|
|
zstyle ':prezto:module:git:info:action' format '%F{7}:%f%%B%F{9}%s%f%%b'
|
|
|
|
|
zstyle ':prezto:module:git:info:added' format ' %%B%F{2}✚%f%%b'
|
|
|
|
|
zstyle ':prezto:module:git:info:ahead' format ' %%B%F{13}⬆%f%%b'
|
|
|
|
|
zstyle ':prezto:module:git:info:behind' format ' %%B%F{13}⬇%f%%b'
|
|
|
|
|
zstyle ':prezto:module:git:info:branch' format ' %%B%F{2}%b%f%%b'
|
|
|
|
|
zstyle ':prezto:module:git:info:commit' format ' %%B%F{3}%.7c%f%%b'
|
|
|
|
|
zstyle ':prezto:module:git:info:deleted' format ' %%B%F{1}✖%f%%b'
|
|
|
|
|
zstyle ':prezto:module:git:info:modified' format ' %%B%F{4}✱%f%%b'
|
|
|
|
|
zstyle ':prezto:module:git:info:position' format ' %%B%F{13}%p%f%%b'
|
|
|
|
|
zstyle ':prezto:module:git:info:renamed' format ' %%B%F{5}➜%f%%b'
|
|
|
|
|
zstyle ':prezto:module:git:info:stashed' format ' %%B%F{6}✭%f%%b'
|
|
|
|
|
zstyle ':prezto:module:git:info:unmerged' format ' %%B%F{3}═%f%%b'
|
|
|
|
|
zstyle ':prezto:module:git:info:untracked' format ' %%B%F{7}◼%f%%b'
|
2012-10-02 02:12:14 +00:00
|
|
|
|
zstyle ':prezto:module:git:info:keys' format \
|
2015-05-19 21:12:17 +00:00
|
|
|
|
'status' '$(coalesce "%b" "%p" "%c")%s%A%B%S%a%d%m%r%U%u'
|
2011-07-18 00:15:51 +00:00
|
|
|
|
|
2012-08-06 20:52:38 +00:00
|
|
|
|
# Define prompts.
|
2015-05-19 21:14:36 +00:00
|
|
|
|
PROMPT='${SSH_TTY:+"%F{9}%n%f%F{7}@%f%F{3}%m%f "}%F{4}${_prompt_sorin_pwd}%(!. %B%F{1}#%f%b.)${editor_info[keymap]} '
|
2015-02-23 00:51:09 +00:00
|
|
|
|
RPROMPT=''
|
2015-05-19 21:14:36 +00:00
|
|
|
|
SPROMPT='zsh: correct %F{1}%R%f to %F{2}%r%f [nyae]? '
|
2011-07-18 00:15:51 +00:00
|
|
|
|
}
|
|
|
|
|
|
2015-05-31 20:51:29 +00:00
|
|
|
|
function prompt_sorin_preview {
|
|
|
|
|
local +h PROMPT=''
|
|
|
|
|
local +h RPROMPT=''
|
|
|
|
|
local +h SPROMPT=''
|
|
|
|
|
|
|
|
|
|
editor-info 2>/dev/null
|
|
|
|
|
prompt_preview_theme 'sorin'
|
|
|
|
|
}
|
|
|
|
|
|
2011-07-18 00:15:51 +00:00
|
|
|
|
prompt_sorin_setup "$@"
|