fi
#
-# Precmd
-#
-
-function prompt_precmd {
- git-info
-}
-
-#
-# Functions
+# ZLE widgets
#
-function virtualenv_info {
- if [[ -z "$VIRTUAL_ENV" ]]; then
- venv="default"
- else
- venv="${VIRTUAL_ENV##*/}"
- fi
- echo "🐍${venv}"
-}
-
-function rvm_info {
- if [[ -z "$RUBY_VERSION" ]]; then
- rvminfo="default"
- else
- rvminfo=`rvm-prompt`
- fi
- echo "💎${rvminfo}"
-}
+function zle-line-init zle-keymap-select {
-function nvm_info {
- if [[ -z "$NVM_BIN" ]]; then
- nvminfo="default"
- else
- nvminfo=`nvm current`
- fi
- echo "💛${nvminfo}"
-}
+ # Couldn't figure out how to get tmux and iTerm to agree on how to render
+ # these characters... so there you go.
-function box_name {
- [ -f ~/.box-name ] && cat ~/.box-name || hostname -s
-}
+ local normal_symbol="N"
+ local insert_symbol="I"
+ local error_symbol="X"
-#
-# ZLE widgets
-#
+ # Show vi status / return status on the right side
-function zle-line-init zle-keymap-select {
- local return_status="%{%F{red}%}%(?..🆇)%{$reset_color%}"
+ local return_status="%{%F{red}%}%(?.. $error_symbol)%{$reset_color%}"
if [ $KEYMAP = 'vicmd' ]; then
- local edit_status="%{%F{cyan}%}🅽"
+ local edit_status="%{%F{cyan}%}$normal_symbol"
else
- local edit_status="%{%F{green}%}🅸"
+ local edit_status="%{%F{green}%}$insert_symbol"
fi
- RPS1="${edit_status} ${return_status} %{$reset_color%}"
- RPS2=$RPS1
+ RPROMPT="${edit_status}${return_status}%{$reset_color%}"
zle reset-prompt
}
zle -N zle-line-init
# Load required functions.
autoload -Uz add-zsh-hook
- # Add hook for calling git-info before each command.
- add-zsh-hook precmd prompt_precmd
-
- # Set git-info parameters.
- zstyle ':git:info' verbose 'no'
- zstyle ':git:info:branch' format '@%F{cyan}%b%f'
- zstyle ':git:info:clean' format ''
- zstyle ':git:info:added' format '%{%F{green}%}!'
- zstyle ':git:info:modified' format '%{%F{green}%}?'
- zstyle ':git:info:untracked' format '%{%F{magenta}%}?'
- zstyle ':git:info:keys' format \
- 'prompt' '%b%a%m%u'
-
# Define prompts.
PROMPT='
-%{%F{black}%}$(nvm_info) $(rvm_info) $(virtualenv_info)
-%{%F{magenta}%}%n%{%f%}@%{%F{yellow}%}$(box_name)%{%f%} %{%B%F{green}%}${PWD/#$HOME/~}%{%f%b%}${git_info[prompt]} %{%f%}
-%(?,,%{${%B%F{white}%}[%?]%{%f%b%} )$ '
+%{%F{black}%}$(env_info) $(node_info) $(rust_info) $(python_info)
+%{%F{magenta}%}%n%{%f%}@%{%F{yellow}%}$(hostname -s)%{%f%} %{%B%F{green}%}${PWD/#$HOME/~}%{%f%b%}$(git_info)%{%f%}
+%(?,,%{${%B%F{white}%}[%?]%{%f%b%} )%% '
}
prompt_setup "$@"
setopt PROMPT_SUBST
+setopt PROMPT_PERCENT
+setopt TRANSIENT_RPROMPT