blob: fd6586a9d70ce03e7fe20bdc7921d66b94e3576e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
# Simple theme based on my old zsh settings.
function get_host {
echo '@'`hostname`''
}
PROMPT='> '
RPROMPT='%~$(git_prompt_info)$(get_host)'
ZSH_THEME_GIT_PROMPT_DIRTY="%{$fg[yellow]%}✗%{$reset_color%}"
ZSH_THEME_GIT_PROMPT_PREFIX="("
ZSH_THEME_GIT_PROMPT_SUFFIX=")"
|