1
0
Fork 0
mirror of synced 2024-06-15 13:31:09 -04:00
zimfw/modules/prompt/themes/gitster.zsh-theme

40 lines
1.1 KiB
Plaintext
Raw Normal View History

2015-12-18 11:02:56 -05:00
#
# Gitster theme
# https://github.com/shashankmehta/dotfiles/blob/master/thesetup/zsh/.oh-my-zsh/custom/themes/gitster.zsh-theme
#
prompt_gitster_get_status() {
print '%(?:%F{green}➜:%F{red}➜) '
}
2015-12-18 11:02:56 -05:00
prompt_gitster_get_pwd() {
prompt_short_dir=$(short_pwd)
git_root=$(command git rev-parse --show-toplevel 2> /dev/null) && prompt_short_dir=${prompt_short_dir#${$(short_pwd $git_root):h}/}
2016-01-07 08:06:52 -05:00
print ${prompt_short_dir}
2015-12-18 11:02:56 -05:00
}
2016-01-07 08:06:52 -05:00
prompt_gitster_precmd() {
[[ ${+functions[git-info]} ]] && git-info
}
2016-01-07 08:06:52 -05:00
prompt_gitster_setup() {
autoload -Uz colors && colors
autoload -Uz add-zsh-hook
prompt_opts=(cr percent subst)
add-zsh-hook precmd prompt_gitster_precmd
zstyle ':zim:git-info:branch' format '%b'
zstyle ':zim:git-info:commit' format '%c'
zstyle ':zim:git-info:clean' format '%F{green}✓'
zstyle ':zim:git-info:dirty' format '%F{yellow}✗'
zstyle ':zim:git-info:keys' format \
'prompt' ' %F{cyan}%b%c %C%D'
PROMPT='$(prompt_gitster_get_status)%F{white}$(prompt_gitster_get_pwd)${(e)git_info[prompt]}%f '
RPROMPT=''
}
2015-12-18 11:02:56 -05:00
prompt_gitster_setup "$@"