Skip to content

Instantly share code, notes, and snippets.

@oscarmarina
Created January 6, 2022 19:48
Show Gist options
  • Select an option

  • Save oscarmarina/433208fe1e81a592bb594cc633000c63 to your computer and use it in GitHub Desktop.

Select an option

Save oscarmarina/433208fe1e81a592bb594cc633000c63 to your computer and use it in GitHub Desktop.
# Based on bira theme
setopt prompt_subst
() {
local PR_USER PR_USER_OP PR_PROMPT PR_HOST
# Check the UID
if [[ $UID -ne 0 ]]; then # normal user
PR_USER='%F{green}%n%f'
PR_USER_OP='%F{green}%#%f'
PR_PROMPT='%f➤%f'
else # root
PR_USER='%F{red}%n%f'
PR_USER_OP='%F{red}%#%f'
PR_PROMPT='%F{red}➤%f'
fi
# Check if we are on SSH or not
if [[ -n "$SSH_CLIENT" || -n "$SSH2_CLIENT" ]]; then
PR_HOST='%F{red}%M%f' # SSH
else
PR_HOST='%F{green}%M%f' # no SSH
fi
local return_code="%(?..%F{red}%? ↵%f)"
local user_host="${PR_USER}%F{cyan}@${PR_HOST}"
local current_dir="%B%F{cyan}%~%f%b"
local git_branch='$(git_prompt_info)'
local rvm_ruby='$(ruby_prompt_info)'
local nvm_node='$(nvm_prompt_info)'
PROMPT="┌─ ${user_host} ${current_dir} ${nvm_node}
└─ ${git_branch}"
RPROMPT="${return_code}"
ZSH_THEME_GIT_PROMPT_PREFIX="%F{yellow}["
ZSH_THEME_GIT_PROMPT_SUFFIX="] %f"
ZSH_THEME_RUBY_PROMPT_PREFIX="%F{red}‹"
ZSH_THEME_RUBY_PROMPT_SUFFIX="›%f"
ZSH_THEME_NVM_PROMPT_PREFIX="%F{cyan}[node:"
ZSH_THEME_NVM_PROMPT_SUFFIX="]%f"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment