From 2661815216c138cddea6a867483b3de2ba62eaaf Mon Sep 17 00:00:00 2001 From: Adam Goldsmith Date: Sat, 25 Apr 2015 22:32:07 -0400 Subject: [PATCH] initial commit --- prompt_fred_setup | 76 +++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 76 insertions(+) create mode 100644 prompt_fred_setup diff --git a/prompt_fred_setup b/prompt_fred_setup new file mode 100644 index 0000000..c94b70a --- /dev/null +++ b/prompt_fred_setup @@ -0,0 +1,76 @@ +# A simple theme that displays relevant, contextual information. + +# Load dependencies. +pmodload 'helper' + +function prompt_fred_precmd { + setopt LOCAL_OPTIONS + unsetopt XTRACE KSH_ARRAYS + + # Get Git repository information. + if (( $+functions[git-info] )); then + git-info + fi + + (( PWDWIDTH = ($COLUMNS-20) * 1/4 )) + + if [[ $(locale charmap) != UTF-8 || "$TERM" == linux ]] + then + PREFIX='$' + LCOLOR="" + else + PREFIX="❱" # U+2771 + LCOLOR="$fg_bold[black]" + fi + if [ -n "$SSH_CLIENT" ] + then + HOSTNAME=%B%F{blue}%m + else + HOSTNAME=%B%F{green}%m + fi +} + +function prompt_fred_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_fred_precmd + + # Set editor-info parameters. + zstyle ':prezto:module:editor:info:completing' format '%B%F{red}...%f%b' + 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{magenta}git%f$(coalesce "%b" "%p" "%c")%s' \ + 'rprompt' '%A%B%S%a%d%m%r%U%u' + + # Define prompts. + PROMPT='%B%(!.%F{red}.%F{green})%n@%f%b${HOSTNAME}%f%b%F{cyan} %${PWDWIDTH}<..<%~%f${git_info:+${(e)git_info[prompt]}}%(!. %B%F{red}#%f%b.)%B%F{cyan}${PREFIX}%f%b ${green}' + RPROMPT='${editor_info[overwrite]}%(?:: %F{red}%? ⏎%f)${VIM:+" %B%F{green}V%f%b"}${git_info[rprompt]}' + SPROMPT='zsh: correct %F{red}%R%f to %F{green}%r%f [nyae]? ' +} + +prompt_fred_setup "$@" +