ys.zsh-theme 1.76 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
29
30
31
32
33
34
35
36
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)
		if [ -n "$(hg status 2>/dev/null)" ]; then
			echo -n "$YS_VCS_PROMPT_DIRTY"
		else
			echo -n "$YS_VCS_PROMPT_CLEAN"
		fi
		echo -n "$YS_VCS_PROMPT_SUFFIX"
	fi
}
y.s's avatar
y.s committed
37

Yad Smood's avatar
Yad Smood committed
38
local exit_code="%(?,%?,%{$fg[red]%}%?%{$reset_color%})"
39

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