dots-of-war/zsh/.config/zsh/prompt.zsh

65 lines
1.5 KiB
Bash
Raw Normal View History

2021-10-08 15:13:39 +02:00
#!/usr/bin/env zsh
local __bright_cyan="#8ec07c"
local __bright_white="#ebdbb2"
local __bright_green="#b8bb26"
2023-03-14 11:24:59 +01:00
local CUTOFF=3
2021-10-08 16:58:07 +02:00
# black magic that reruns prompt whenever the vi mode changes {{{
function zle-line-init zle-keymap-select {
case $KEYMAP in
vicmd) VI_INDICATOR="N";;
main|viins) VI_INDICATOR="─";;
esac
zle reset-prompt
}
zle -N zle-line-init
zle -N zle-keymap-select
# }}}
2023-03-14 11:24:59 +01:00
function get_dir() {
2021-10-08 15:13:39 +02:00
local IFS=/
2023-03-14 11:24:59 +01:00
local my_path=$(print -P '%~')
2021-10-08 15:13:39 +02:00
local p
for p in $my_path; do
printf %s "${s}${p[0,$CUTOFF]}"
local s=/
done
printf '%s\n' "${p:$CUTOFF}"
}
2023-03-14 11:24:59 +01:00
function git_status() {
2024-02-08 15:21:56 +01:00
local BRANCH=$(git branch 2> /dev/null | sed -e '/^[^*]/d' -e 's/*\s*\(.*\)/\1/' | tr -d ' ')
2021-10-08 15:13:39 +02:00
if [ ! -z $BRANCH ]; then
echo -n "(%F{$__bright_cyan}$BRANCH%F{$__bright_white}"
[ ! -z "$(git status --short)" ] && echo -n "*"
echo -n ")%f"
fi
}
function _my_prompt() {
local exit_code="$?"
2021-10-08 16:58:07 +02:00
echo -n "%F{$__bright_white}╭─$VI_INDICATOR"
#echo -n "%F{$__bright_white}╭───"
2021-10-08 15:13:39 +02:00
echo -n "%F{$__bright_cyan}$USER"
echo -n "%F{$__bright_white} in"
2023-03-14 11:24:59 +01:00
echo -n "%F{$__bright_green} $(get_dir)"
2021-10-08 15:13:39 +02:00
echo -n "%F{$__bright_white} $(git_status)"
if [ ! "$exit_code" = 0 ]; then
echo -n "%F{red} REEEEEEEEEEE $exit_code"
fi
echo
# %3{stuff%} tell's zsh that the characters are printed as 3 chars wide
echo -n "%F{$__bright_white}%3{╰─λ%} "
}
setopt prompt_subst
autoload -U colors && colors
PS1='$(_my_prompt)'