Last active
July 23, 2016 00:48
-
-
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.
This file contains hidden or 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
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