summaryrefslogtreecommitdiffstats
path: root/.zsh/prompt
blob: 17e578da6e3cef554ad19620ae3b26f8b933ab82 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# functions
function git_prompt_info {
    git branch --no-color 2> /dev/null | sed -e '/^[^*]/d' -e 's/* \(.*\)/(\1)/'
}

# Load colors
autoload -U colors && colors

setopt promptsubst
local CUR_BRANCH='$(git_prompt_info)'

PROMPT="%{$fg[blue]%}[%{$fg[yellow]%}%n%{$fg[blue]%}@%{$fg[green]%}%m%{$fg[yellow]%}:%~%{$fg[blue]%}]%{$fg[red]%}${CUR_BRANCH}%{$fg[green]%}%# %{$reset_color%}"

RPROMPT='[%?]'