Last active
February 9, 2019 14:09
-
-
Save n3b0r/a773f5b135585b330ef3e10d725eae7e to your computer and use it in GitHub Desktop.
This is a custom setup for Sorin theme for zprezto ZSH framwork
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Screenshot: https://i.imgur.com/yUplymA.png | |
# Git it's integrated | |
# Author: vguerrero | |
# WS: https://vguerrero.com | |
# @: v @ vguerrero.com | |
# Code | |
# Load dependencies. | |
pmodload 'helper' | |
function prompt_sorin_pwd { | |
local pwd="${PWD/#$HOME/~}" | |
if [[ "$pwd" == (#m)[/~] ]]; then | |
_prompt_sorin_pwd="$MATCH" | |
unset MATCH | |
else | |
_prompt_sorin_pwd="${${${${(@j:/:M)${(@s:/:)pwd}##.#?}:h}%/}//\%/%%}/${${pwd:t}//\%/%%}" | |
fi | |
} | |
function prompt_sorin_precmd { | |
setopt LOCAL_OPTIONS | |
unsetopt XTRACE KSH_ARRAYS | |
# Format PWD. | |
prompt_sorin_pwd | |
# Get Git repository information. | |
if (( $+functions[git-info] )); then | |
git-info | |
fi | |
} | |
function prompt_sorin_setup { | |
setopt LOCAL_OPTIONS | |
unsetopt XTRACE KSH_ARRAYS | |
prompt_opts=(cr percent subst) | |
# Load required functions. | |
autoload -Uz add-zsh-hook | |
# Add hook for calling git-info before each command. | |
add-zsh-hook precmd prompt_sorin_precmd | |
# Set editor-info parameters. | |
zstyle ':prezto:module:editor:info:keymap:primary' format ' %B%F{red}❯%F{yellow}❯%F{green}❯%f%b' | |
zstyle ':prezto:module:editor:info:keymap:primary:overwrite' format ' %F{red}♺%f' | |
zstyle ':prezto:module:editor:info:keymap:alternate' format ' %B%F{green}❮%F{yellow}❮%F{red}❮%f%b' | |
# Set git-info parameters. | |
zstyle ':prezto:module:git:info' verbose 'yes' | |
zstyle ':prezto:module:git:info:action' format ':%%B%F{yellow}%s%f%%b' | |
zstyle ':prezto:module:git:info:added' format ' %%B%F{green}✚%f%%b' | |
zstyle ':prezto:module:git:info:ahead' format ' %%B%F{yellow}⬆%f%%b' | |
zstyle ':prezto:module:git:info:behind' format ' %%B%F{yellow}⬇%f%%b' | |
zstyle ':prezto:module:git:info:branch' format ':%F{green}%b%f' | |
zstyle ':prezto:module:git:info:commit' format ':%F{green}%.7c%f' | |
zstyle ':prezto:module:git:info:deleted' format ' %%B%F{red}✖%f%%b' | |
zstyle ':prezto:module:git:info:modified' format ' %%B%F{blue}✱%f%%b' | |
zstyle ':prezto:module:git:info:position' format ':%F{red}%p%f' | |
zstyle ':prezto:module:git:info:renamed' format ' %%B%F{magenta}➜%f%%b' | |
zstyle ':prezto:module:git:info:stashed' format ' %%B%F{cyan}✭%f%%b' | |
zstyle ':prezto:module:git:info:unmerged' format ' %%B%F{yellow}═%f%%b' | |
zstyle ':prezto:module:git:info:untracked' format ' %%B%F{white}◼%f%%b' | |
zstyle ':prezto:module:git:info:keys' format \ | |
'prompt' ' <-> %F{blue}git%f$(coalesce "%b" "%p" "%c")%s' \ | |
'rprompt' '%A%B%S%a%d%m%r%U%u' | |
# Define prompts. | |
PROMPT='%F{red}%n@%f%F{yellow}%/%f${git_info:+${(e)git_info[prompt]}}%(!. %B%F{red}#%f%b.) | |
${editor_info[keymap]} ' | |
RPROMPT='${editor_info[overwrite]}%(?:: %F{red}⏎%f)${VIM:+" %B%F{green}V%f%b"}${INSIDE_EMACS:+" %B%F{green}E%f%b"}${git_info[rprompt]}' | |
SPROMPT='zsh: correct %F{red}%R%f to %F{green}%r%f [nyae]? ' | |
} | |
prompt_sorin_setup "$@" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment