Created
May 15, 2017 21:41
-
-
Save Nifled/27001f52fb8ea0fd6b4f18c2ba2efbbd to your computer and use it in GitHub Desktop.
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
# ZSH Theme - Preview: http://dl.dropbox.com/u/4109351/pics/gnzh-zsh-theme.png | |
# 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 | |
local return_code="%(?..%F{red}%? ↵%f)" | |
local user_host="${PR_USER}" | |
local current_dir=“%B%F{magenta}%~%f%b” | |
local rvm_ruby='' | |
if ${HOME}/.rvm/bin/rvm-prompt &> /dev/null; then # detect user-local rvm installation | |
rvm_ruby='%F{red}‹$(${HOME}/.rvm/bin/rvm-prompt i v g s)›%f' | |
elif which rvm-prompt &> /dev/null; then # detect system-wide rvm installation | |
rvm_ruby='%F{red}‹$(rvm-prompt i v g s)›%f' | |
elif which rbenv &> /dev/null; then # detect Simple Ruby Version Management | |
rvm_ruby='%F{red}‹$(rbenv version | sed -e "s/ (set.*$//")›%f' | |
fi | |
local git_branch='$(git_prompt_info)' | |
PROMPT="╭─${user_host} ${current_dir} ${rvm_ruby} ${git_branch} | |
╰─$PR_PROMPT " | |
RPROMPT="${return_code}" | |
ZSH_THEME_GIT_PROMPT_PREFIX="%F{yellow}‹" | |
ZSH_THEME_GIT_PROMPT_SUFFIX="› %f" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment