You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
72 lines
2.1 KiB
72 lines
2.1 KiB
# ------------------------------------------------------------------------------
|
|
# FILE: kphoen.zsh-theme
|
|
# DESCRIPTION: oh-my-zsh theme file.
|
|
# AUTHOR: Kévin Gomez (geek63@gmail.com)
|
|
# VERSION: 1.0.0
|
|
# SCREENSHOT:
|
|
# ------------------------------------------------------------------------------
|
|
|
|
if [[ "$TERM" != "dumb" ]] && [[ "$DISABLE_LS_COLORS" != "true" ]]; then
|
|
local R="%{$terminfo[sgr0]%}"
|
|
local MAGENTA="%{$fg[magenta]%}"
|
|
local YELLOW="%{$fg[yellow]%}"
|
|
local GREEN="%{$fg[green]%}"
|
|
local BLUE="%{$fg[blue]%}"
|
|
local CYAN="%{$fg[cyan]%}"
|
|
local RED="%{$fg[red]%}"
|
|
fi
|
|
|
|
PROMPT='[$RED%n$R@$MAGENTA%m$R:$BLUE%~$R$GIT_PROMPT_INFO]
|
|
%# '
|
|
|
|
# display exitcode on the right when >0
|
|
return_code="%(?..$RED%? ↵$R)"
|
|
RPROMPT='${return_code}$GIT_RPROMPT_INFO$R'
|
|
|
|
git_prompt_info ()
|
|
{
|
|
if [ -z "$(git_prompt__git_dir)" ]; then
|
|
GIT_PROMPT_INFO=''
|
|
GIT_RPROMPT_INFO=''
|
|
return
|
|
fi
|
|
|
|
local branch=''
|
|
|
|
git_prompt__branch
|
|
branch="$GIT_PROMPT_BRANCH"
|
|
|
|
git_prompt__rebase_info
|
|
branch="${branch}$GIT_PROMPT_REBASE_INFO"
|
|
|
|
GIT_PROMPT_INFO=" on $GREEN${branch}$R"
|
|
|
|
local rprompt=''
|
|
git_prompt__dirty_state
|
|
if [[ "$GIT_PROMPT_DIRTY_STATE_INDEX_ADDED" = 'yes' ]]; then
|
|
rprompt="$GREEN ✚"
|
|
fi
|
|
if [[ "$GIT_PROMPT_DIRTY_STATE_INDEX_MODIFIED" = 'yes' ]]; then
|
|
rprompt="${rprompt}$BLUE ✹"
|
|
fi
|
|
if [[ "$GIT_PROMPT_DIRTY_STATE_WORKTREE_MODIFIED" = 'yes' ]]; then
|
|
rprompt="${rprompt}$BLUE ✹"
|
|
fi
|
|
if [[ "$GIT_PROMPT_DIRTY_STATE_INDEX_DELETED" = 'yes' ]]; then
|
|
rprompt="${rprompt}$RED ✖"
|
|
fi
|
|
if [[ "$GIT_PROMPT_DIRTY_STATE_WORKTREE_DELETED" = 'yes' ]]; then
|
|
rprompt="${rprompt}$RED ✖"
|
|
fi
|
|
if [[ "$GIT_PROMPT_DIRTY_STATE_INDEX_RENAMED" = 'yes' ]]; then
|
|
rprompt="${rprompt}$MAGENTA ➜"
|
|
fi
|
|
if [[ "$GIT_PROMPT_DIRTY_STATE_INDEX_UNMERGED" = 'yes' ]]; then
|
|
rprompt="${rprompt}$YELLOW ═"
|
|
fi
|
|
if [[ "$GIT_PROMPT_DIRTY_STATE_WORKTREE_UNTRACKED" = 'yes' ]]; then
|
|
rprompt="${rprompt}$CYAN ✭"
|
|
fi
|
|
GIT_RPROMPT_INFO=$rprompt
|
|
}
|