Skip to content

Instantly share code, notes, and snippets.

@velovix
Last active July 23, 2016 00:48
Show Gist options
  • Save velovix/9f73757ef2661989d9dd9d564560ced8 to your computer and use it in GitHub Desktop.
Save velovix/9f73757ef2661989d9dd9d564560ced8 to your computer and use it in GitHub Desktop.
A very simple zsh theme that shows your username, working directory, and git information.
local return_code="%(?..%{$fg[red]%}%? ↵%{$reset_color%})"
if [[ $UID -eq 0 ]]; then
local user_host='%{$fg[red]%}%n@%m%{$reset_color%}'
else
local user_host='%{$fg[yellow]%}%n@%m%{$reset_color%}'
fi
local current_dir='%{$fg[green]%} %~%{$reset_color%}'
local git_branch='$(git_prompt_info)%{$reset_color%}'
PROMPT="${user_host}: ${current_dir} ${git_branch}
$ "
RPS1="${return_code}"
ZSH_THEME_GIT_PROMPT_PREFIX="%{$fg[yellow]%}‹"
ZSH_THEME_GIT_PROMPT_SUFFIX="› %{$reset_color%}"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment