ys.zsh-theme 1.77 KB
Newer Older
y.s's avatar
y.s committed
1
# Clean, simple, compatible and meaningful.
2
# Tested on Linux, Unix and Windows under ANSI colors.
3
# It is recommended to use with a dark background.
y.s's avatar
y.s committed
4
# Colors: black, red, green, yellow, *blue, magenta, cyan, and white.
5
6
#
# Mar 2013 Yad Smood
y.s's avatar
y.s committed
7

8
9
10
11
12
13
14
# VCS
YS_VCS_PROMPT_PREFIX1=" %{$fg[white]%}on%{$reset_color%} "
YS_VCS_PROMPT_PREFIX2=":%{$fg[cyan]%}"
YS_VCS_PROMPT_SUFFIX="%{$reset_color%}"
YS_VCS_PROMPT_DIRTY=" %{$fg[red]%}x"
YS_VCS_PROMPT_CLEAN=" %{$fg[green]%}o"

15
# Git info
16
local git_info='$(git_prompt_info)'
17
18
19
20
21
22
23
24
25
26
27
28
ZSH_THEME_GIT_PROMPT_PREFIX="${YS_VCS_PROMPT_PREFIX1}git${YS_VCS_PROMPT_PREFIX2}"
ZSH_THEME_GIT_PROMPT_SUFFIX="$YS_VCS_PROMPT_SUFFIX"
ZSH_THEME_GIT_PROMPT_DIRTY="$YS_VCS_PROMPT_DIRTY"
ZSH_THEME_GIT_PROMPT_CLEAN="$YS_VCS_PROMPT_CLEAN"

# HG info
local hg_info='$(ys_hg_prompt_info)'
ys_hg_prompt_info() {
	# make sure this is a hg dir
	if [ -d '.hg' ]; then
		echo -n "${YS_VCS_PROMPT_PREFIX1}hg${YS_VCS_PROMPT_PREFIX2}"
		echo -n $(hg branch 2>/dev/null)
29
30
31
32
33
34
		if [[ "$(hg config oh-my-zsh.hide-dirty 2>/dev/null)" != "1" ]]; then
			if [ -n "$(hg status 2>/dev/null)" ]; then
				echo -n "$YS_VCS_PROMPT_DIRTY"
			else
				echo -n "$YS_VCS_PROMPT_CLEAN"
			fi
35
36
37
38
		fi
		echo -n "$YS_VCS_PROMPT_SUFFIX"
	fi
}
y.s's avatar
y.s committed
39

40
local exit_code="%(?,,C:%{$fg[red]%}%?%{$reset_color%})"
41

42
43
# Prompt format:
#
44
# PRIVILEGES USER @ MACHINE in DIRECTORY on git:BRANCH STATE [TIME] C:LAST_EXIT_CODE
45
46
47
48
# $ COMMAND
#
# For example:
#
49
# % ys @ ys-mbp in ~/.oh-my-zsh on git:master x [21:47:42] C:0
50
# $
51
52
PROMPT="
%{$terminfo[bold]$fg[blue]%}#%{$reset_color%} \
53
54
55
%(#,%{$bg[yellow]%}%{$fg[black]%}%n%{$reset_color%},%{$fg[cyan]%}%n) \
%{$fg[white]%}@ \
%{$fg[green]%}%m \
56
%{$fg[white]%}in \
57
%{$terminfo[bold]$fg[yellow]%}%~%{$reset_color%}\
58
${hg_info}\
Yad Smood's avatar
Yad Smood committed
59
60
${git_info}\
 \
61
%{$fg[white]%}[%*] $exit_code
62
%{$terminfo[bold]$fg[red]%}$ %{$reset_color%}"