forked from halfo/lambda-mod-zsh-theme
-
Notifications
You must be signed in to change notification settings - Fork 0
/
lambda-mod.zsh-theme
86 lines (70 loc) · 2.4 KB
/
lambda-mod.zsh-theme
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
#!/usr/bin/env zsh
setopt prompt_subst
local LAMBDA="%(?,%{$fg_bold[green]%}λ,%{$fg_bold[red]%}λ)"
if [[ "$USER" == "root" ]]; then USERCOLOR="red"; else USERCOLOR="yellow"; fi
PROMPT='
${LAMBDA}\
%{$fg_bold[$USERCOLOR]%}%n@%M\
%{$fg_no_bold[magenta]%}[%3~]\
%{$fg_bold[cyan]%}→ %{$reset_color%}'
RPROMPT=''
ASYNC_PROC=0
function precmd() {
if [[ $ZSH_THEME_ASYNC_GIT_PROMPT == "1" ]]; then
function async() {
printf "%s" "$(get_right_prompt)" > "/tmp/zsh_prompt_$$"
kill -s USR1 $$
}
if [[ "${ASYNC_PROC}" != 0 ]]; then
kill -s HUP $ASYNC_PROC >/dev/null 2>&1 || :
fi
async&!
ASYNC_PROC=$!
else
RPROMPT="$(get_right_prompt)"
fi
}
function TRAPUSR1() {
RPROMPT="$(cat /tmp/zsh_prompt_$$)"
ASYNC_PROC=0
zle && zle reset-prompt
}
# Git sometimes goes into a detached head state. git_prompt_info doesn't
# return anything in this case. So wrap it in another function and check
# for an empty string.
function check_git_prompt_info() {
if git rev-parse --git-dir > /dev/null 2>&1; then
if [[ -z $(git_prompt_info) ]]; then
echo "%{$fg[blue]%}detached-head%{$reset_color%}) $(git_prompt_status)
%{$fg[yellow]%}→ "
else
echo "$(git_prompt_info) $(git_prompt_status)
%{$fg_bold[cyan]%}→ "
fi
else
fi
}
function get_right_prompt() {
if git rev-parse --git-dir > /dev/null 2>&1; then
echo -n "$(git_prompt_info) $(git_prompt_status) $(git_prompt_short_sha)%{$reset_color%}"
else
echo -n "%{$reset_color%}"
fi
}
# Format for git_prompt_info()
ZSH_THEME_GIT_PROMPT_PREFIX="%{$fg[blue]%} "
ZSH_THEME_GIT_PROMPT_SUFFIX="%{$reset_color%}"
ZSH_THEME_GIT_PROMPT_DIRTY=""
ZSH_THEME_GIT_PROMPT_CLEAN="%{$fg_bold[green]%} ✔"
# Format for git_prompt_status()
ZSH_THEME_GIT_PROMPT_ADDED="%{$fg_bold[green]%}+"
ZSH_THEME_GIT_PROMPT_MODIFIED="%{$fg_bold[blue]%}!"
ZSH_THEME_GIT_PROMPT_DELETED="%{$fg_bold[red]%}-"
ZSH_THEME_GIT_PROMPT_RENAMED="%{$fg_bold[magenta]%}>"
ZSH_THEME_GIT_PROMPT_UNMERGED="%{$fg_bold[yellow]%}#"
ZSH_THEME_GIT_PROMPT_UNTRACKED="%{$fg_bold[cyan]%}?"
# Format for git_prompt_ahead()
ZSH_THEME_GIT_PROMPT_AHEAD=" %{$fg_bold[white]%}^"
# Format for git_prompt_long_sha() and git_prompt_short_sha()
ZSH_THEME_GIT_PROMPT_SHA_BEFORE=" %{$fg_bold[white]%}[%{$fg_bold[blue]%}"
ZSH_THEME_GIT_PROMPT_SHA_AFTER="%{$fg_bold[white]%}]"