142 changed files with 6 additions and 4310 deletions
@ -1,7 +0,0 @@
@@ -1,7 +0,0 @@
|
||||
PROMPT=$'%{$fg[white]%}$(~/.rvm/bin/rvm-prompt) %{$fg_bold[cyan]%}%~%{$reset_color%}$(git_prompt_info) %{$fg[cyan]%}%D{[%I:%M:%S]}\ |
||||
%{$fg_bold[green]%}%n$%{$reset_color%} ' |
||||
|
||||
ZSH_THEME_GIT_PROMPT_PREFIX=" %{$fg[white]%}(" |
||||
ZSH_THEME_GIT_PROMPT_SUFFIX=")%{$reset_color%}" |
||||
ZSH_THEME_GIT_PROMPT_DIRTY="*" |
||||
ZSH_THEME_GIT_PROMPT_CLEAN="" |
@ -1,87 +0,0 @@
@@ -1,87 +0,0 @@
|
||||
PROMPT='%{$fg[blue]%}%n%{$reset_color%} on %{$fg[red]%}%M%{$reset_color%} in %{$fg[blue]%}%~%b%{$reset_color%}$(git_time_since_commit)$(check_git_prompt_info) |
||||
$ ' |
||||
|
||||
ZSH_THEME_GIT_PROMPT_PREFIX="%{$fg[white]%}" |
||||
ZSH_THEME_GIT_PROMPT_SUFFIX="%{$reset_color%})" |
||||
|
||||
# Text to display if the branch is dirty |
||||
ZSH_THEME_GIT_PROMPT_DIRTY="%{$fg[red]%}*%{$reset_color%}" |
||||
|
||||
# Text to display if the branch is clean |
||||
ZSH_THEME_GIT_PROMPT_CLEAN="" |
||||
|
||||
# Colors vary depending on time lapsed. |
||||
ZSH_THEME_GIT_TIME_SINCE_COMMIT_SHORT="%{$fg[green]%}" |
||||
ZSH_THEME_GIT_TIME_SHORT_COMMIT_MEDIUM="%{$fg[yellow]%}" |
||||
ZSH_THEME_GIT_TIME_SINCE_COMMIT_LONG="%{$fg[red]%}" |
||||
ZSH_THEME_GIT_TIME_SINCE_COMMIT_NEUTRAL="%{$fg[cyan]%}" |
||||
|
||||
|
||||
# Git sometimes goes into a detached head state. git_prompt_info doesn't |
||||
# return anything in this case. So wrap it in another function and check |
||||
# for an empty string. |
||||
function check_git_prompt_info() { |
||||
if git rev-parse --git-dir > /dev/null 2>&1; then |
||||
if [[ -z $(git_prompt_info) ]]; then |
||||
echo "%{$fg[magenta]%}detached-head%{$reset_color%})" |
||||
else |
||||
echo "$(git_prompt_info)" |
||||
fi |
||||
fi |
||||
} |
||||
|
||||
# Determine if we are using a gemset. |
||||
function rvm_gemset() { |
||||
if hash rvm 2>/dev/null; then |
||||
GEMSET=`rvm gemset list | grep '=>' | cut -b4-` |
||||
if [[ -n $GEMSET ]]; then |
||||
echo "%{$fg[yellow]%}$GEMSET%{$reset_color%}|" |
||||
fi |
||||
fi |
||||
} |
||||
|
||||
# Determine the time since last commit. If branch is clean, |
||||
# use a neutral color, otherwise colors will vary according to time. |
||||
function git_time_since_commit() { |
||||
if git rev-parse --git-dir > /dev/null 2>&1; then |
||||
# Only proceed if there is actually a commit. |
||||
if [[ $(git log 2>&1 > /dev/null | grep -c "^fatal: bad default revision") == 0 ]]; then |
||||
# Get the last commit. |
||||
last_commit=`git log --pretty=format:'%at' -1 2> /dev/null` |
||||
now=`date +%s` |
||||
seconds_since_last_commit=$((now-last_commit)) |
||||
|
||||
# Totals |
||||
MINUTES=$((seconds_since_last_commit / 60)) |
||||
HOURS=$((seconds_since_last_commit/3600)) |
||||
|
||||
# Sub-hours and sub-minutes |
||||
DAYS=$((seconds_since_last_commit / 86400)) |
||||
SUB_HOURS=$((HOURS % 24)) |
||||
SUB_MINUTES=$((MINUTES % 60)) |
||||
|
||||
if [[ -n $(git status -s 2> /dev/null) ]]; then |
||||
if [ "$MINUTES" -gt 30 ]; then |
||||
COLOR="$ZSH_THEME_GIT_TIME_SINCE_COMMIT_LONG" |
||||
elif [ "$MINUTES" -gt 10 ]; then |
||||
COLOR="$ZSH_THEME_GIT_TIME_SHORT_COMMIT_MEDIUM" |
||||
else |
||||
COLOR="$ZSH_THEME_GIT_TIME_SINCE_COMMIT_SHORT" |
||||
fi |
||||
else |
||||
COLOR="$ZSH_THEME_GIT_TIME_SINCE_COMMIT_NEUTRAL" |
||||
fi |
||||
|
||||
if [ "$HOURS" -gt 24 ]; then |
||||
echo "($(rvm_gemset)$COLOR${DAYS}d${SUB_HOURS}h${SUB_MINUTES}m%{$reset_color%}|" |
||||
elif [ "$MINUTES" -gt 60 ]; then |
||||
echo "($(rvm_gemset)$COLOR${HOURS}h${SUB_MINUTES}m%{$reset_color%}|" |
||||
else |
||||
echo "($(rvm_gemset)$COLOR${MINUTES}m%{$reset_color%}|" |
||||
fi |
||||
else |
||||
COLOR="$ZSH_THEME_GIT_TIME_SINCE_COMMIT_NEUTRAL" |
||||
echo "($(rvm_gemset)$COLOR~|" |
||||
fi |
||||
fi |
||||
} |
@ -1,114 +0,0 @@
@@ -1,114 +0,0 @@
|
||||
#!/usr/bin/env zsh |
||||
# # |
||||
# # #README |
||||
# # |
||||
# # This theme provides two customizable header functionalities: |
||||
# # a) displaying a pseudo-random message from a database of quotations |
||||
# # (https://en.wikipedia.org/wiki/Fortune_%28Unix%29) |
||||
# # b) displaying randomly command line tips from The command line fu |
||||
# # (https://www.commandlinefu.com) community: in order to make use of this functionality |
||||
# # you will need Internet connection. |
||||
# # This theme provides as well information for the current user's context, like; |
||||
# # branch and status for the current version control system (git and svn currently |
||||
# # supported) and time, presented to the user in a non invasive volatile way. |
||||
# # |
||||
# # #REQUIREMENTS |
||||
# # This theme requires wget:: |
||||
# # -Homebrew-osx- brew install wget |
||||
# # -Debian/Ubuntu- apt-get install wget |
||||
# # and fortune :: |
||||
# # -Homebrew-osx- brew install fortune |
||||
# # -Debian/Ubuntu- apt-get install fortune |
||||
# # |
||||
# # optionally: |
||||
# # -Oh-myzsh vcs plug-ins git and svn. |
||||
# # -Solarized theme (https://github.com/altercation/solarized/) |
||||
# # -OS X: iTerm 2 (https://iterm2.com/) |
||||
# # -font Source code pro (https://github.com/adobe/source-code-pro) |
||||
# # |
||||
# # This theme's look and feel is based on the Aaron Toponce's zsh theme, more info: |
||||
# # https://pthree.org/2008/11/23/727/ |
||||
# # enjoy! |
||||
########## COLOR ########### |
||||
for COLOR in CYAN WHITE YELLOW MAGENTA BLACK BLUE RED DEFAULT GREEN GREY; do |
||||
eval PR_$COLOR='%{$fg[${(L)COLOR}]%}' |
||||
eval PR_BRIGHT_$COLOR='%{$fg_bold[${(L)COLOR}]%}' |
||||
done |
||||
PR_RESET="%{$reset_color%}" |
||||
RED_START="${PR_RESET}${PR_GREY}<${PR_RESET}${PR_RED}<${PR_BRIGHT_RED}<${PR_RESET} " |
||||
RED_END="${PR_RESET}${PR_BRIGHT_RED}>${PR_RESET}${PR_RED}>${PR_GREY}>${PR_RESET} " |
||||
GREEN_END="${PR_RESET}${PR_BRIGHT_GREEN}>${PR_RESET}${PR_GREEN}>${PR_GREY}>${PR_RESET} " |
||||
GREEN_BASE_START="${PR_RESET}${PR_GREY}>${PR_RESET}${PR_GREEN}>${PR_BRIGHT_GREEN}>${PR_RESET}" |
||||
GREEN_START_P1="${PR_RESET}${GREEN_BASE_START}${PR_RESET} " |
||||
DIVISION="${PR_RESET}${PR_RED} < ${PR_RESET}" |
||||
VCS_DIRTY_COLOR="${PR_RESET}${PR_YELLOW}" |
||||
VCS_CLEAN_COLOR="${PR_RESET}${PR_GREEN}" |
||||
VCS_SUFIX_COLOR="${PR_RESET}${PR_RED}› ${PR_RESET}" |
||||
# ########## COLOR ########### |
||||
# ########## SVN ########### |
||||
ZSH_THEME_SVN_PROMPT_PREFIX="${PR_RESET}${PR_RED}‹svn:" |
||||
ZSH_THEME_SVN_PROMPT_SUFFIX="" |
||||
ZSH_THEME_SVN_PROMPT_DIRTY="${VCS_DIRTY_COLOR} ✘${VCS_SUFIX_COLOR}" |
||||
ZSH_THEME_SVN_PROMPT_CLEAN="${VCS_CLEAN_COLOR} ✔${VCS_SUFIX_COLOR}" |
||||
# ########## SVN ########### |
||||
# ########## GIT ########### |
||||
ZSH_THEME_GIT_PROMPT_PREFIX="${PR_RESET}${PR_RED}‹git:" |
||||
ZSH_THEME_GIT_PROMPT_SUFFIX="" |
||||
ZSH_THEME_GIT_PROMPT_DIRTY="${VCS_DIRTY_COLOR} ✘${VCS_SUFIX_COLOR}" |
||||
ZSH_THEME_GIT_PROMPT_CLEAN="${VCS_CLEAN_COLOR} ✔${VCS_SUFIX_COLOR}" |
||||
ZSH_THEME_GIT_PROMPT_ADDED="${PR_RESET}${PR_YELLOW} ✚${PR_RESET}" |
||||
ZSH_THEME_GIT_PROMPT_MODIFIED="${PR_RESET}${PR_YELLOW} ✹${PR_RESET}" |
||||
ZSH_THEME_GIT_PROMPT_DELETED="${PR_RESET}${PR_YELLOW} ✖${PR_RESET}" |
||||
ZSH_THEME_GIT_PROMPT_RENAMED="${PR_RESET}${PR_YELLOW} ➜${PR_RESET}" |
||||
ZSH_THEME_GIT_PROMPT_UNMERGED="${PR_RESET}${PR_YELLOW} ═${PR_RESET}" |
||||
ZSH_THEME_GIT_PROMPT_UNTRACKED="${PR_RESET}${PR_YELLOW} ✭${PR_RESET}" |
||||
# ########## GIT ########### |
||||
function precmd { |
||||
#gets the fortune |
||||
ps1_fortune () { |
||||
#Choose from all databases, regardless of whether they are considered "offensive" |
||||
fortune -a |
||||
} |
||||
#obtains the tip |
||||
ps1_command_tip () { |
||||
wget -qO - http://www.commandlinefu.com/commands/random/plaintext | sed 1d | sed '/^$/d' |
||||
} |
||||
prompt_header () { |
||||
if [[ "true" == "$ENABLE_COMMAND_TIP" ]]; then |
||||
ps1_command_tip |
||||
else |
||||
ps1_fortune |
||||
fi |
||||
} |
||||
PROMPT_HEAD="${RED_START}${PR_YELLOW}$(prompt_header)${PR_RESET}" |
||||
# set a simple variable to show when in screen |
||||
if [[ -n "${WINDOW}" ]]; then |
||||
SCREEN="" |
||||
fi |
||||
} |
||||
|
||||
# Context: user@directory or just directory |
||||
prompt_context () { |
||||
if [[ "$USER" != "$DEFAULT_USER" || -n "$SSH_CLIENT" ]]; then |
||||
echo -n "${PR_RESET}${PR_RED}$USER@%m${PR_RESET}${PR_BRIGHT_YELLOW}%~%<<${PR_RESET}" |
||||
else |
||||
echo -n "${PR_RESET}${PR_BRIGHT_YELLOW}%~%<<${PR_RESET}" |
||||
fi |
||||
} |
||||
|
||||
set_prompt () { |
||||
# required for the prompt |
||||
setopt prompt_subst |
||||
autoload zsh/terminfo |
||||
|
||||
# ######### PROMPT ######### |
||||
PROMPT='${PROMPT_HEAD} |
||||
${RED_START}$(prompt_context) |
||||
${GREEN_START_P1}' |
||||
RPROMPT='${PR_RESET}$(git_prompt_info)$(svn_prompt_info)${PR_YELLOW}%D{%R.%S %a %b %d %Y} ${GREEN_END}${PR_RESET}' |
||||
# Matching continuation prompt |
||||
PROMPT2='${GREEN_BASE_START}${PR_RESET} %_ ${GREEN_BASE_START}${PR_RESET} ' |
||||
# ######### PROMPT ######### |
||||
} |
||||
|
||||
set_prompt |
@ -1,33 +0,0 @@
@@ -1,33 +0,0 @@
|
||||
# af-magic.zsh-theme |
||||
# Repo: https://github.com/andyfleming/oh-my-zsh |
||||
# Direct Link: https://github.com/andyfleming/oh-my-zsh/blob/master/themes/af-magic.zsh-theme |
||||
|
||||
if [ $UID -eq 0 ]; then NCOLOR="red"; else NCOLOR="green"; fi |
||||
local return_code="%(?..%{$fg[red]%}%? ↵%{$reset_color%})" |
||||
|
||||
# primary prompt |
||||
PROMPT='$FG[237]------------------------------------------------------------%{$reset_color%} |
||||
$FG[032]%~\ |
||||
$(git_prompt_info) \ |
||||
$FG[105]%(!.#.»)%{$reset_color%} ' |
||||
PROMPT2='%{$fg[red]%}\ %{$reset_color%}' |
||||
RPS1='${return_code}' |
||||
|
||||
|
||||
# color vars |
||||
eval my_gray='$FG[237]' |
||||
eval my_orange='$FG[214]' |
||||
|
||||
# right prompt |
||||
if type "virtualenv_prompt_info" > /dev/null |
||||
then |
||||
RPROMPT='$(virtualenv_prompt_info)$my_gray%n@%m%{$reset_color%}%' |
||||
else |
||||
RPROMPT='$my_gray%n@%m%{$reset_color%}%' |
||||
fi |
||||
|
||||
# git settings |
||||
ZSH_THEME_GIT_PROMPT_PREFIX="$FG[075]($FG[078]" |
||||
ZSH_THEME_GIT_PROMPT_CLEAN="" |
||||
ZSH_THEME_GIT_PROMPT_DIRTY="$my_orange*%{$reset_color%}" |
||||
ZSH_THEME_GIT_PROMPT_SUFFIX="$FG[075])%{$reset_color%}" |
@ -1,10 +0,0 @@
@@ -1,10 +0,0 @@
|
||||
if [ $UID -eq 0 ]; then CARETCOLOR="red"; else CARETCOLOR="blue"; fi |
||||
|
||||
local return_code="%(?..%{$fg[red]%}%? ↵%{$reset_color%})" |
||||
|
||||
PROMPT='%m %{${fg_bold[blue]}%}:: %{$reset_color%}%{${fg[green]}%}%3~ $(git_prompt_info)%{${fg_bold[$CARETCOLOR]}%}»%{${reset_color}%} ' |
||||
|
||||
RPS1="${return_code}" |
||||
|
||||
ZSH_THEME_GIT_PROMPT_PREFIX="%{$fg[yellow]%}‹" |
||||
ZSH_THEME_GIT_PROMPT_SUFFIX="› %{$reset_color%}" |
@ -1,28 +0,0 @@
@@ -1,28 +0,0 @@
|
||||
|
||||
local user='%{$fg[magenta]%}%n@%{$fg[magenta]%}%m%{$reset_color%}' |
||||
local pwd='%{$fg[blue]%}%~%{$reset_color%}' |
||||
local rvm='' |
||||
if which rvm-prompt &> /dev/null; then |
||||
rvm='%{$fg[green]%}‹$(rvm-prompt i v g)›%{$reset_color%}' |
||||
else |
||||
if which rbenv &> /dev/null; then |
||||
rvm='%{$fg[green]%}‹$(rbenv version | sed -e "s/ (set.*$//")›%{$reset_color%}' |
||||
fi |
||||
fi |
||||
local return_code='%(?..%{$fg[red]%}%? ↵%{$reset_color%})' |
||||
local git_branch='$(git_prompt_status)%{$reset_color%}$(git_prompt_info)%{$reset_color%}' |
||||
|
||||
ZSH_THEME_GIT_PROMPT_PREFIX="%{$fg[green]%}" |
||||
ZSH_THEME_GIT_PROMPT_SUFFIX="%{$reset_color%}" |
||||
ZSH_THEME_GIT_PROMPT_DIRTY="" |
||||
ZSH_THEME_GIT_PROMPT_CLEAN="" |
||||
|
||||
ZSH_THEME_GIT_PROMPT_ADDED="%{$fg[green]%} ✚" |
||||
ZSH_THEME_GIT_PROMPT_MODIFIED="%{$fg[blue]%} ✹" |
||||
ZSH_THEME_GIT_PROMPT_DELETED="%{$fg[red]%} ✖" |
||||
ZSH_THEME_GIT_PROMPT_RENAMED="%{$fg[magenta]%} ➜" |
||||
ZSH_THEME_GIT_PROMPT_UNMERGED="%{$fg[yellow]%} ═" |
||||
ZSH_THEME_GIT_PROMPT_UNTRACKED="%{$fg[cyan]%} ✭" |
||||
|
||||
PROMPT="${user} ${pwd}$ " |
||||
RPROMPT="${return_code} ${git_branch} ${rvm}" |
@ -1,29 +0,0 @@
@@ -1,29 +0,0 @@
|
||||
# vim:ft=zsh ts=2 sw=2 sts=2 |
||||
|
||||
rvm_current() { |
||||
rvm current 2>/dev/null |
||||
} |
||||
|
||||
rbenv_version() { |
||||
rbenv version 2>/dev/null | awk '{print $1}' |
||||
} |
||||
|
||||
PROMPT=' |
||||
%{$fg_bold[green]%}%~%{$reset_color%}$(git_prompt_info) ⌚ %{$fg_bold[red]%}%*%{$reset_color%} |
||||
$ ' |
||||
|
||||
# Must use Powerline font, for \uE0A0 to render. |
||||
ZSH_THEME_GIT_PROMPT_PREFIX=" on %{$fg[magenta]%}\uE0A0 " |
||||
ZSH_THEME_GIT_PROMPT_SUFFIX="%{$reset_color%}" |
||||
ZSH_THEME_GIT_PROMPT_DIRTY="%{$fg[red]%}!" |
||||
ZSH_THEME_GIT_PROMPT_UNTRACKED="%{$fg[green]%}?" |
||||
ZSH_THEME_GIT_PROMPT_CLEAN="" |
||||
|
||||
if [ -e ~/.rvm/bin/rvm-prompt ]; then |
||||
RPROMPT='%{$fg_bold[red]%}‹$(rvm_current)›%{$reset_color%}' |
||||
else |
||||
if which rbenv &> /dev/null; then |
||||
RPROMPT='%{$fg_bold[red]%}$(rbenv_version)%{$reset_color%}' |
||||
fi |
||||
fi |
||||
|
@ -1,14 +0,0 @@
@@ -1,14 +0,0 @@
|
||||
if [ $UID -eq 0 ]; then NCOLOR="red"; else NCOLOR="yellow"; fi |
||||
|
||||
PROMPT='%{$fg[$NCOLOR]%}%c ➤ %{$reset_color%}' |
||||
RPROMPT='%{$fg[$NCOLOR]%}%p $(git_prompt_info)%{$reset_color%}' |
||||
|
||||
ZSH_THEME_GIT_PROMPT_PREFIX="git:" |
||||
ZSH_THEME_GIT_PROMPT_SUFFIX="" |
||||
ZSH_THEME_GIT_PROMPT_DIRTY="*" |
||||
ZSH_THEME_GIT_PROMPT_CLEAN="" |
||||
|
||||
# See https://geoff.greer.fm/lscolors/ |
||||
export LSCOLORS="exfxcxdxbxbxbxbxbxbxbx" |
||||
export LS_COLORS="di=34;40:ln=35;40:so=32;40:pi=33;40:ex=31;40:bd=31;40:cd=31;40:su=31;40:sg=31;40:tw=31;40:ow=31;40:" |
||||
|
@ -1,8 +0,0 @@
@@ -1,8 +0,0 @@
|
||||
|
||||
PROMPT='$fg_bold[blue][ $fg[red]%t $fg_bold[blue]] $fg_bold[blue] [ $fg[red]%n@%m:%~$(git_prompt_info)$fg[yellow]$(rvm_prompt_info)$fg_bold[blue] ]$reset_color |
||||
$ ' |
||||
# git theming |
||||
ZSH_THEME_GIT_PROMPT_PREFIX="$fg_bold[green](" |
||||
ZSH_THEME_GIT_PROMPT_SUFFIX=")" |
||||
ZSH_THEME_GIT_PROMPT_CLEAN="✔" |
||||
ZSH_THEME_GIT_PROMPT_DIRTY="✗" |
@ -1,108 +0,0 @@
@@ -1,108 +0,0 @@
|
||||
# AVIT ZSH Theme |
||||
|
||||
PROMPT=' |
||||
$(_user_host)${_current_dir} $(git_prompt_info) $(_ruby_version) |
||||
%{$fg[$CARETCOLOR]%}▶%{$resetcolor%} ' |
||||
|
||||
PROMPT2='%{$fg[$CARETCOLOR]%}◀%{$reset_color%} ' |
||||
|
||||
RPROMPT='$(_vi_status)%{$(echotc UP 1)%}$(_git_time_since_commit) $(git_prompt_status) ${_return_status}%{$(echotc DO 1)%}' |
||||
|
||||
local _current_dir="%{$fg_bold[blue]%}%3~%{$reset_color%} " |
||||
local _return_status="%{$fg_bold[red]%}%(?..⍉)%{$reset_color%}" |
||||
local _hist_no="%{$fg[grey]%}%h%{$reset_color%}" |
||||
|
||||
function _current_dir() { |
||||
local _max_pwd_length="65" |
||||
if [[ $(echo -n $PWD | wc -c) -gt ${_max_pwd_length} ]]; then |
||||
echo "%{$fg_bold[blue]%}%-2~ ... %3~%{$reset_color%} " |
||||
else |
||||
echo "%{$fg_bold[blue]%}%~%{$reset_color%} " |
||||
fi |
||||
} |
||||
|
||||
function _user_host() { |
||||
if [[ -n $SSH_CONNECTION ]]; then |
||||
me="%n@%m" |
||||
elif [[ $LOGNAME != $USER ]]; then |
||||
me="%n" |
||||
fi |
||||
if [[ -n $me ]]; then |
||||
echo "%{$fg[cyan]%}$me%{$reset_color%}:" |
||||
fi |
||||
} |
||||
|
||||
function _vi_status() { |
||||
if {echo $fpath | grep -q "plugins/vi-mode"}; then |
||||
echo "$(vi_mode_prompt_info)" |
||||
fi |
||||
} |
||||
|
||||
function _ruby_version() { |
||||
if {echo $fpath | grep -q "plugins/rvm"}; then |
||||
echo "%{$fg[grey]%}$(rvm_prompt_info)%{$reset_color%}" |
||||
elif {echo $fpath | grep -q "plugins/rbenv"}; then |
||||
echo "%{$fg[grey]%}$(rbenv_prompt_info)%{$reset_color%}" |
||||
fi |
||||
} |
||||
|
||||
# Determine the time since last commit. If branch is clean, |
||||
# use a neutral color, otherwise colors will vary according to time. |
||||
function _git_time_since_commit() { |
||||
# Only proceed if there is actually a commit. |
||||
if last_commit=$(git log --pretty=format:'%at' -1 2> /dev/null); then |
||||
now=$(date +%s) |
||||
seconds_since_last_commit=$((now-last_commit)) |
||||
|
||||
# Totals |
||||
minutes=$((seconds_since_last_commit / 60)) |
||||
hours=$((seconds_since_last_commit/3600)) |
||||
|
||||
# Sub-hours and sub-minutes |
||||
days=$((seconds_since_last_commit / 86400)) |
||||
sub_hours=$((hours % 24)) |
||||
sub_minutes=$((minutes % 60)) |
||||
|
||||
if [ $hours -ge 24 ]; then |
||||
commit_age="${days}d" |
||||
elif [ $minutes -gt 60 ]; then |
||||
commit_age="${sub_hours}h${sub_minutes}m" |
||||
else |
||||
commit_age="${minutes}m" |
||||
fi |
||||
|
||||
color=$ZSH_THEME_GIT_TIME_SINCE_COMMIT_NEUTRAL |
||||
echo "$color$commit_age%{$reset_color%}" |
||||
fi |
||||
} |
||||
|
||||
if [[ $USER == "root" ]]; then |
||||
CARETCOLOR="red" |
||||
else |
||||
CARETCOLOR="white" |
||||
fi |
||||
|
||||
MODE_INDICATOR="%{$fg_bold[yellow]%}❮%{$reset_color%}%{$fg[yellow]%}❮❮%{$reset_color%}" |
||||
|
||||
ZSH_THEME_GIT_PROMPT_PREFIX="%{$fg[green]%}" |
||||
ZSH_THEME_GIT_PROMPT_SUFFIX="%{$reset_color%}" |
||||
|
||||
ZSH_THEME_GIT_PROMPT_DIRTY=" %{$fg[red]%}✗%{$reset_color%}" |
||||
ZSH_THEME_GIT_PROMPT_CLEAN=" %{$fg[green]%}✔%{$reset_color%}" |
||||
ZSH_THEME_GIT_PROMPT_ADDED="%{$fg[green]%}✚ " |
||||
ZSH_THEME_GIT_PROMPT_MODIFIED="%{$fg[yellow]%}⚑ " |
||||
ZSH_THEME_GIT_PROMPT_DELETED="%{$fg[red]%}✖ " |
||||
ZSH_THEME_GIT_PROMPT_RENAMED="%{$fg[blue]%}▴ " |
||||
ZSH_THEME_GIT_PROMPT_UNMERGED="%{$fg[cyan]%}§ " |
||||
ZSH_THEME_GIT_PROMPT_UNTRACKED="%{$fg[white]%}◒ " |
||||
|
||||
# Colors vary depending on time lapsed. |
||||
ZSH_THEME_GIT_TIME_SINCE_COMMIT_SHORT="%{$fg[green]%}" |
||||
ZSH_THEME_GIT_TIME_SHORT_COMMIT_MEDIUM="%{$fg[yellow]%}" |
||||
ZSH_THEME_GIT_TIME_SINCE_COMMIT_LONG="%{$fg[red]%}" |
||||
ZSH_THEME_GIT_TIME_SINCE_COMMIT_NEUTRAL="%{$fg[white]%}" |
||||
|
||||
# LS colors, made with https://geoff.greer.fm/lscolors/ |
||||
export LSCOLORS="exfxcxdxbxegedabagacad" |
||||
export LS_COLORS='di=34;40:ln=35;40:so=32;40:pi=33;40:ex=31;40:bd=34;46:cd=34;43:su=0;41:sg=0;46:tw=0;42:ow=0;43:' |
||||
export GREP_COLOR='1;33' |
@ -1,16 +0,0 @@
@@ -1,16 +0,0 @@
|
||||
# the svn plugin has to be activated for this to work. |
||||
local ret_status="%(?:%{$fg_bold[green]%}➜ :%{$fg_bold[red]%}➜ %s)" |
||||
PROMPT='${ret_status}%{$fg_bold[green]%}%p %{$fg[cyan]%}%c %{$fg_bold[blue]%}$(git_prompt_info)%{$fg_bold[blue]%}$(svn_prompt_info)%{$reset_color%}' |
||||
|
||||
ZSH_THEME_GIT_PROMPT_PREFIX="git:(%{$fg[red]%}" |
||||
ZSH_THEME_GIT_PROMPT_SUFFIX="%{$reset_color%}" |
||||
ZSH_THEME_GIT_PROMPT_DIRTY="%{$fg[blue]%})%{$fg[yellow]%} ✗ %{$reset_color%}" |
||||
ZSH_THEME_GIT_PROMPT_CLEAN="%{$fg[blue]%}) " |
||||
|
||||
ZSH_PROMPT_BASE_COLOR="%{$fg_bold[blue]%}" |
||||
ZSH_THEME_REPO_NAME_COLOR="%{$fg_bold[red]%}" |
||||
|
||||
ZSH_THEME_SVN_PROMPT_PREFIX="svn:(" |
||||
ZSH_THEME_SVN_PROMPT_SUFFIX=")" |
||||
ZSH_THEME_SVN_PROMPT_DIRTY="%{$fg[red]%} ✘ %{$reset_color%}" |
||||
ZSH_THEME_SVN_PROMPT_CLEAN=" " |
@ -1,30 +0,0 @@
@@ -1,30 +0,0 @@
|
||||
# ZSH Theme - Preview: https://gyazo.com/8becc8a7ed5ab54a0262a470555c3eed.png |
||||
local return_code="%(?..%{$fg[red]%}%? ↵%{$reset_color%})" |
||||
|
||||
|
||||
if [[ $UID -eq 0 ]]; then |
||||
local user_host='%{$terminfo[bold]$fg[red]%}%n@%m%{$reset_color%}' |
||||
local user_symbol='#' |
||||
else |
||||
local user_host='%{$terminfo[bold]$fg[green]%}%n@%m%{$reset_color%}' |
||||
local user_symbol='$' |
||||
fi |
||||
|
||||
local current_dir='%{$terminfo[bold]$fg[blue]%}%~%{$reset_color%}' |
||||
local rvm_ruby='' |
||||
if which rvm-prompt &> /dev/null; then |
||||
rvm_ruby='%{$fg[red]%}‹$(rvm-prompt i v g)›%{$reset_color%}' |
||||
else |
||||
if which rbenv &> /dev/null; then |
||||
rvm_ruby='%{$fg[red]%}‹$(rbenv version | sed -e "s/ (set.*$//")›%{$reset_color%}' |
||||
fi |
||||
fi |
||||
local git_branch='$(git_prompt_info)%{$reset_color%}' |
||||
|
||||
PROMPT="╭─${user_host} ${current_dir} ${rvm_ruby} ${git_branch} |
||||
╰─%B${user_symbol}%b " |
||||
RPS1="%B${return_code}%b" |
||||
|
||||
ZSH_THEME_GIT_PROMPT_PREFIX="%{$fg[yellow]%}‹" |
||||
ZSH_THEME_GIT_PROMPT_SUFFIX="› %{$reset_color%}" |
||||
|
@ -1,30 +0,0 @@
@@ -1,30 +0,0 @@
|
||||
# https://github.com/blinks zsh theme |
||||
|
||||
function _prompt_char() { |
||||
if $(git rev-parse --is-inside-work-tree >/dev/null 2>&1); then |
||||
echo "%{%F{blue}%}±%{%f%k%b%}" |
||||
else |
||||
echo ' ' |
||||
fi |
||||
} |
||||
|
||||
# This theme works with both the "dark" and "light" variants of the |
||||
# Solarized color schema. Set the SOLARIZED_THEME variable to one of |
||||
# these two values to choose. If you don't specify, we'll assume you're |
||||
# using the "dark" variant. |
||||
|
||||
case ${SOLARIZED_THEME:-dark} in |
||||
light) bkg=white;; |
||||
*) bkg=black;; |
||||
esac |
||||
|
||||
ZSH_THEME_GIT_PROMPT_PREFIX=" [%{%B%F{blue}%}" |
||||
ZSH_THEME_GIT_PROMPT_SUFFIX="%{%f%k%b%K{${bkg}}%B%F{green}%}]" |
||||
ZSH_THEME_GIT_PROMPT_DIRTY=" %{%F{red}%}*%{%f%k%b%}" |
||||
ZSH_THEME_GIT_PROMPT_CLEAN="" |
||||
|
||||
PROMPT='%{%f%k%b%} |
||||
%{%K{${bkg}}%B%F{green}%}%n%{%B%F{blue}%}@%{%B%F{cyan}%}%m%{%B%F{green}%} %{%b%F{yellow}%K{${bkg}}%}%~%{%B%F{green}%}$(git_prompt_info)%E%{%f%k%b%} |
||||
%{%K{${bkg}}%}$(_prompt_char)%{%K{${bkg}}%} %#%{%f%k%b%} ' |
||||
|
||||
RPROMPT='!%{%B%F{cyan}%}%!%{%f%k%b%}' |
@ -1,123 +0,0 @@
@@ -1,123 +0,0 @@
|
||||
# oh-my-zsh Bureau Theme |
||||
|
||||
### NVM |
||||
|
||||
ZSH_THEME_NVM_PROMPT_PREFIX="%B⬡%b " |
||||
ZSH_THEME_NVM_PROMPT_SUFFIX="" |
||||
|
||||
### Git [±master ▾●] |
||||
|
||||
ZSH_THEME_GIT_PROMPT_PREFIX="[%{$fg_bold[green]%}±%{$reset_color%}%{$fg_bold[white]%}" |
||||
ZSH_THEME_GIT_PROMPT_SUFFIX="%{$reset_color%}]" |
||||
ZSH_THEME_GIT_PROMPT_CLEAN="%{$fg_bold[green]%}✓%{$reset_color%}" |
||||
ZSH_THEME_GIT_PROMPT_AHEAD="%{$fg[cyan]%}▴%{$reset_color%}" |
||||
ZSH_THEME_GIT_PROMPT_BEHIND="%{$fg[magenta]%}▾%{$reset_color%}" |
||||
ZSH_THEME_GIT_PROMPT_STAGED="%{$fg_bold[green]%}●%{$reset_color%}" |
||||
ZSH_THEME_GIT_PROMPT_UNSTAGED="%{$fg_bold[yellow]%}●%{$reset_color%}" |
||||
ZSH_THEME_GIT_PROMPT_UNTRACKED="%{$fg_bold[red]%}●%{$reset_color%}" |
||||
|
||||
bureau_git_branch () { |
||||
ref=$(command git symbolic-ref HEAD 2> /dev/null) || \ |
||||
ref=$(command git rev-parse --short HEAD 2> /dev/null) || return |
||||
echo "${ref#refs/heads/}" |
||||
} |
||||
|
||||
bureau_git_status() { |
||||
_STATUS="" |
||||
|
||||
# check status of files |
||||
_INDEX=$(command git status --porcelain 2> /dev/null) |
||||
if [[ -n "$_INDEX" ]]; then |
||||
if $(echo "$_INDEX" | command grep -q '^[AMRD]. '); then |
||||
_STATUS="$_STATUS$ZSH_THEME_GIT_PROMPT_STAGED" |
||||
fi |
||||
if $(echo "$_INDEX" | command grep -q '^.[MTD] '); then |
||||
_STATUS="$_STATUS$ZSH_THEME_GIT_PROMPT_UNSTAGED" |
||||
fi |
||||
if $(echo "$_INDEX" | command grep -q -E '^\?\? '); then |
||||
_STATUS="$_STATUS$ZSH_THEME_GIT_PROMPT_UNTRACKED" |
||||
fi |
||||
if $(echo "$_INDEX" | command grep -q '^UU '); then |
||||
_STATUS="$_STATUS$ZSH_THEME_GIT_PROMPT_UNMERGED" |
||||
fi |
||||
else |
||||
_STATUS="$_STATUS$ZSH_THEME_GIT_PROMPT_CLEAN" |
||||
fi |
||||
|
||||
# check status of local repository |
||||
_INDEX=$(command git status --porcelain -b 2> /dev/null) |
||||
if $(echo "$_INDEX" | command grep -q '^## .*ahead'); then |
||||
_STATUS="$_STATUS$ZSH_THEME_GIT_PROMPT_AHEAD" |
||||
fi |
||||
if $(echo "$_INDEX" | command grep -q '^## .*behind'); then |
||||
_STATUS="$_STATUS$ZSH_THEME_GIT_PROMPT_BEHIND" |
||||
fi |
||||
if $(echo "$_INDEX" | command grep -q '^## .*diverged'); then |
||||
_STATUS="$_STATUS$ZSH_THEME_GIT_PROMPT_DIVERGED" |
||||
fi |
||||
|
||||
if $(command git rev-parse --verify refs/stash &> /dev/null); then |
||||
_STATUS="$_STATUS$ZSH_THEME_GIT_PROMPT_STASHED" |
||||
fi |
||||
|
||||
echo $_STATUS |
||||
} |
||||
|
||||
bureau_git_prompt () { |
||||
local _branch=$(bureau_git_branch) |
||||
local _status=$(bureau_git_status) |
||||
local _result="" |
||||
if [[ "${_branch}x" != "x" ]]; then |
||||
_result="$ZSH_THEME_GIT_PROMPT_PREFIX$_branch" |
||||
if [[ "${_status}x" != "x" ]]; then |
||||
_result="$_result $_status" |
||||
fi |
||||
_result="$_result$ZSH_THEME_GIT_PROMPT_SUFFIX" |
||||
fi |
||||
echo $_result |
||||
} |
||||
|
||||
|
||||
_PATH="%{$fg_bold[white]%}%~%{$reset_color%}" |
||||
|
||||
if [[ $EUID -eq 0 ]]; then |
||||
_USERNAME="%{$fg_bold[red]%}%n" |
||||
_LIBERTY="%{$fg[red]%}#" |
||||
else |
||||
_USERNAME="%{$fg_bold[white]%}%n" |
||||
_LIBERTY="%{$fg[green]%}$" |
||||
fi |
||||
_USERNAME="$_USERNAME%{$reset_color%}@%m" |
||||
_LIBERTY="$_LIBERTY%{$reset_color%}" |
||||
|
||||
|
||||
get_space () { |
||||
local STR=$1$2 |
||||
local zero='%([BSUbfksu]|([FB]|){*})' |
||||
local LENGTH=${#${(S%%)STR//$~zero/}} |
||||
local SPACES="" |
||||
(( LENGTH = ${COLUMNS} - $LENGTH - 1)) |
||||
|
||||
for i in {0..$LENGTH} |
||||
do |
||||
SPACES="$SPACES " |
||||
done |
||||
|
||||
echo $SPACES |
||||
} |
||||
|
||||
_1LEFT="$_USERNAME $_PATH" |
||||
_1RIGHT="[%*] " |
||||
|
||||
bureau_precmd () { |
||||
_1SPACES=`get_space $_1LEFT $_1RIGHT` |
||||
print |
||||
print -rP "$_1LEFT$_1SPACES$_1RIGHT" |
||||
} |
||||
|
||||
setopt prompt_subst |
||||
PROMPT='> $_LIBERTY ' |
||||
RPROMPT='$(nvm_prompt_info) $(bureau_git_prompt)' |
||||
|
||||
autoload -U add-zsh-hook |
||||
add-zsh-hook precmd bureau_precmd |
@ -1,30 +0,0 @@
@@ -1,30 +0,0 @@
|
||||
# neuralsanwich.zsh-theme |
||||
|
||||
if [ "x$OH_MY_ZSH_HG" = "x" ]; then |
||||
OH_MY_ZSH_HG="hg" |
||||
fi |
||||
|
||||
function hg_prompt_info { |
||||
$OH_MY_ZSH_HG prompt --angle-brackets "\ |
||||
< on %{$fg[magenta]%}<branch>%{$reset_color%}>\ |
||||
< at %{$fg[yellow]%}<tags|%{$reset_color%}, %{$fg[yellow]%}>%{$reset_color%}>\ |
||||
%{$fg[green]%}<status|modified|unknown><update>%{$reset_color%}< |
||||
patches: <patches|join( → )|pre_applied(%{$fg[yellow]%})|post_applied(%{$reset_color%})|pre_unapplied(%{$fg_bold[black]%})|post_unapplied(%{$reset_color%})>>" 2>/dev/null |
||||
} |
||||
|
||||
function box_name { |
||||
[ -f ~/.box-name ] && cat ~/.box-name || echo ${SHORT_HOST:-$HOST} |
||||
} |
||||
|
||||
PROMPT=' |
||||
%{$fg[magenta]%}%n%{$reset_color%}@%{$fg[yellow]%}$(box_name)%{$reset_color%}:%{$fg_bold[green]%}%~%{$reset_color%}$(hg_prompt_info)$(git_prompt_info) |
||||
%(?,,%{${fg_bold[white]}%}[%?]%{$reset_color%} )$ ' |
||||
|
||||
ZSH_THEME_GIT_PROMPT_PREFIX=" (%{$fg[magenta]%}branch: " |
||||
ZSH_THEME_GIT_PROMPT_CLEAN="" |
||||
ZSH_THEME_GIT_PROMPT_UNTRACKED="%{$fg[red]%}?" |
||||
ZSH_THEME_GIT_PROMPT_DIRTY="%{$fg[orange]%}!" |
||||
ZSH_THEME_GIT_PROMPT_SUFFIX="%{$reset_color%})" |
||||
|
||||
local return_status="%{$fg[red]%}%(?..✘)%{$reset_color%}" |
||||
RPROMPT='${return_status}$(battery_time_remaining) $(battery_pct_prompt)%{$reset_color%}' |
@ -1,7 +0,0 @@
@@ -1,7 +0,0 @@
|
||||
PROMPT=$'%{$fg_bold[green]%}%n@%m %{$fg[blue]%}%D{[%X]} %{$reset_color%}%{$fg[white]%}[%~]%{$reset_color%} $(git_prompt_info)\ |
||||
%{$fg[blue]%}->%{$fg_bold[blue]%} %#%{$reset_color%} ' |
||||
|
||||
ZSH_THEME_GIT_PROMPT_PREFIX="%{$fg[green]%}[" |
||||
ZSH_THEME_GIT_PROMPT_SUFFIX="]%{$reset_color%}" |
||||
ZSH_THEME_GIT_PROMPT_DIRTY=" %{$fg[red]%}*%{$fg[green]%}" |
||||
ZSH_THEME_GIT_PROMPT_CLEAN="" |
@ -1,14 +0,0 @@
@@ -1,14 +0,0 @@
|
||||
if [ $UID -eq 0 ]; then NCOLOR="red"; else NCOLOR="white"; fi |
||||
|
||||
PROMPT='%{$fg[$NCOLOR]%}%B%n%b%{$reset_color%}:%{$fg[blue]%}%B%c/%b%{$reset_color%} $(git_prompt_info)%(!.#.$) ' |
||||
RPROMPT='[%*]' |
||||
|
||||
# git theming |
||||
ZSH_THEME_GIT_PROMPT_PREFIX="%{$fg_bold[blue]%}(%{$fg_no_bold[yellow]%}%B" |
||||
ZSH_THEME_GIT_PROMPT_SUFFIX="%b%{$fg_bold[blue]%})%{$reset_color%} " |
||||
ZSH_THEME_GIT_PROMPT_CLEAN="" |
||||
ZSH_THEME_GIT_PROMPT_DIRTY="%{$fg_bold[red]%}✗" |
||||
|
||||
# LS colors, made with https://geoff.greer.fm/lscolors/ |
||||
export LSCOLORS="Gxfxcxdxbxegedabagacad" |
||||
export LS_COLORS='no=00:fi=00:di=01;34:ln=00;36:pi=40;33:so=01;35:do=01;35:bd=40;33;01:cd=40;33;01:or=41;33;01:ex=00;32:*.cmd=00;32:*.exe=01;32:*.com=01;32:*.bat=01;32:*.btm=01;32:*.dll=01;32:*.tar=00;31:*.tbz=00;31:*.tgz=00;31:*.rpm=00;31:*.deb=00;31:*.arj=00;31:*.taz=00;31:*.lzh=00;31:*.lzma=00;31:*.zip=00;31:*.zoo=00;31:*.z=00;31:*.Z=00;31:*.gz=00;31:*.bz2=00;31:*.tb2=00;31:*.tz2=00;31:*.tbz2=00;31:*.avi=01;35:*.bmp=01;35:*.fli=01;35:*.gif=01;35:*.jpg=01;35:*.jpeg=01;35:*.mng=01;35:*.mov=01;35:*.mpg=01;35:*.pcx=01;35:*.pbm=01;35:*.pgm=01;35:*.png=01;35:*.ppm=01;35:*.tga=01;35:*.tif=01;35:*.xbm=01;35:*.xpm=01;35:*.dl=01;35:*.gl=01;35:*.wmv=01;35:*.aiff=00;32:*.au=00;32:*.mid=00;32:*.mp3=00;32:*.ogg=00;32:*.voc=00;32:*.wav=00;32:' |
@ -1,10 +0,0 @@
@@ -1,10 +0,0 @@
|
||||
if [[ -z $ZSH_THEME_CLOUD_PREFIX ]]; then |
||||
ZSH_THEME_CLOUD_PREFIX='☁' |
||||
fi |
||||
|
||||
PROMPT='%{$fg_bold[cyan]%}$ZSH_THEME_CLOUD_PREFIX %{$fg_bold[green]%}%p %{$fg[green]%}%c %{$fg_bold[cyan]%}$(git_prompt_info)%{$fg_bold[blue]%} % %{$reset_color%}' |
||||
|
||||
ZSH_THEME_GIT_PROMPT_PREFIX="%{$fg[green]%}[%{$fg[cyan]%}" |
||||
ZSH_THEME_GIT_PROMPT_SUFFIX="%{$reset_color%}" |
||||
ZSH_THEME_GIT_PROMPT_DIRTY="%{$fg[green]%}] %{$fg[yellow]%}⚡ %{$reset_color%}" |
||||
ZSH_THEME_GIT_PROMPT_CLEAN="%{$fg[green]%}]" |
@ -1,8 +0,0 @@
@@ -1,8 +0,0 @@
|
||||
PROMPT=$' |
||||
%{$fg_bold[green]%}%n@%m %{$fg[blue]%}%D{[%I:%M:%S]} %{$reset_color%}%{$fg[white]%}[%~]%{$reset_color%} $(git_prompt_info)\ |
||||
%{$fg[blue]%}->%{$fg_bold[blue]%} %#%{$reset_color%} ' |
||||
|
||||
ZSH_THEME_GIT_PROMPT_PREFIX="%{$fg[green]%}[" |
||||
ZSH_THEME_GIT_PROMPT_SUFFIX="]%{$reset_color%}" |
||||
ZSH_THEME_GIT_PROMPT_DIRTY=" %{$fg[red]%}*%{$fg[green]%}" |
||||
ZSH_THEME_GIT_PROMPT_CLEAN="" |
@ -1,43 +0,0 @@
@@ -1,43 +0,0 @@
|
||||
# CRUNCH - created from Steve Eley's cat waxing. |
||||
# Initially hacked from the Dallas theme. Thanks, Dallas Reedy. |
||||
# |
||||
# This theme assumes you do most of your oh-my-zsh'ed "colorful" work at a single machine, |
||||
# and eschews the standard space-consuming user and hostname info. Instead, only the |
||||
# things that vary in my own workflow are shown: |
||||
# |
||||
# * The time (not the date) |
||||
# * The RVM version and gemset (omitting the 'ruby' name if it's MRI) |
||||
# * The current directory |
||||
# * The Git branch and its 'dirty' state |
||||
# |
||||
# Colors are at the top so you can mess with those separately if you like. |
||||
# For the most part I stuck with Dallas's. |
||||
|
||||
CRUNCH_BRACKET_COLOR="%{$fg[white]%}" |
||||
CRUNCH_TIME_COLOR="%{$fg[yellow]%}" |
||||
CRUNCH_RVM_COLOR="%{$fg[magenta]%}" |
||||
CRUNCH_DIR_COLOR="%{$fg[cyan]%}" |
||||
CRUNCH_GIT_BRANCH_COLOR="%{$fg[green]%}" |
||||
CRUNCH_GIT_CLEAN_COLOR="%{$fg[green]%}" |
||||
CRUNCH_GIT_DIRTY_COLOR="%{$fg[red]%}" |
||||
|
||||
# These Git variables are used by the oh-my-zsh git_prompt_info helper: |
||||
ZSH_THEME_GIT_PROMPT_PREFIX="$CRUNCH_BRACKET_COLOR:$CRUNCH_GIT_BRANCH_COLOR" |
||||
ZSH_THEME_GIT_PROMPT_SUFFIX="" |
||||
ZSH_THEME_GIT_PROMPT_CLEAN=" $CRUNCH_GIT_CLEAN_COLOR✓" |
||||
ZSH_THEME_GIT_PROMPT_DIRTY=" $CRUNCH_GIT_DIRTY_COLOR✗" |
||||
|
||||
# Our elements: |
||||
CRUNCH_TIME_="$CRUNCH_BRACKET_COLOR{$CRUNCH_TIME_COLOR%T$CRUNCH_BRACKET_COLOR}%{$reset_color%}" |
||||
if [ -e ~/.rvm/bin/rvm-prompt ]; then |
||||
CRUNCH_RVM_="$CRUNCH_BRACKET_COLOR"["$CRUNCH_RVM_COLOR\${\$(~/.rvm/bin/rvm-prompt i v g)#ruby-}$CRUNCH_BRACKET_COLOR"]"%{$reset_color%}" |
||||
else |
||||
if which rbenv &> /dev/null; then |
||||
CRUNCH_RVM_="$CRUNCH_BRACKET_COLOR"["$CRUNCH_RVM_COLOR\${\$(rbenv version | sed -e 's/ (set.*$//' -e 's/^ruby-//')}$CRUNCH_BRACKET_COLOR"]"%{$reset_color%}" |
||||
fi |
||||
fi |
||||
CRUNCH_DIR_="$CRUNCH_DIR_COLOR%~\$(git_prompt_info) " |
||||
CRUNCH_PROMPT="$CRUNCH_BRACKET_COLOR➭ " |
||||
|
||||
# Put it all together! |
||||
PROMPT="$CRUNCH_TIME_$CRUNCH_RVM_$CRUNCH_DIR_$CRUNCH_PROMPT%{$reset_color%}" |
@ -1,4 +0,0 @@
@@ -1,4 +0,0 @@
|
||||
# Based on evan's prompt |
||||
# Shows the exit status of the last command if non-zero |
||||
# Uses "#" instead of "»" when running with elevated privileges |
||||
PROMPT="%m %{${fg_bold[red]}%}:: %{${fg[green]}%}%3~%(0?. . %{${fg[red]}%}%? )%{${fg[blue]}%}»%{${reset_color}%} " |
@ -1,32 +0,0 @@
@@ -1,32 +0,0 @@
|
||||
# Personalized! |
||||
|
||||
# Grab the current date (%D) and time (%T) wrapped in {}: {%D %T} |
||||
DALLAS_CURRENT_TIME_="%{$fg[white]%}{%{$fg[yellow]%}%D %T%{$fg[white]%}}%{$reset_color%}" |
||||
# Grab the current version of ruby in use (via RVM): [ruby-1.8.7] |
||||
if [ -e ~/.rvm/bin/rvm-prompt ]; then |
||||
DALLAS_CURRENT_RUBY_="%{$fg[white]%}[%{$fg[magenta]%}\$(~/.rvm/bin/rvm-prompt i v)%{$fg[white]%}]%{$reset_color%}" |
||||
else |
||||
if which rbenv &> /dev/null; then |
||||
DALLAS_CURRENT_RUBY_="%{$fg[white]%}[%{$fg[magenta]%}\$(rbenv version | sed -e 's/ (set.*$//')%{$fg[white]%}]%{$reset_color%}" |
||||
fi |
||||
fi |
||||
# Grab the current machine name: muscato |
||||
DALLAS_CURRENT_MACH_="%{$fg[green]%}%m%{$fg[white]%}:%{$reset_color%}" |
||||
# Grab the current filepath, use shortcuts: ~/Desktop |
||||
# Append the current git branch, if in a git repository: ~aw@master |
||||
DALLAS_CURRENT_LOCA_="%{$fg[cyan]%}%~\$(git_prompt_info)%{$reset_color%}\$(parse_git_dirty)" |
||||
# Grab the current username: dallas |
||||
DALLAS_CURRENT_USER_="%{$fg[red]%}%n%{$reset_color%}" |
||||
# Use a % for normal users and a # for privelaged (root) users. |
||||
DALLAS_PROMPT_CHAR_="%{$fg[white]%}%(!.#.%%)%{$reset_color%}" |
||||
# For the git prompt, use a white @ and blue text for the branch name |
||||
ZSH_THEME_GIT_PROMPT_PREFIX="%{$fg[white]%}@%{$fg[blue]%}" |
||||
# Close it all off by resetting the color and styles. |
||||
ZSH_THEME_GIT_PROMPT_SUFFIX="%{$reset_color%}" |
||||
# Do nothing if the branch is clean (no changes). |
||||
ZSH_THEME_GIT_PROMPT_CLEAN="" |
||||
# Add 3 cyan ✗s if this branch is diiirrrty! Dirty branch! |
||||
ZSH_THEME_GIT_PROMPT_DIRTY="%{$fg[cyan]%}✗✗✗" |
||||
|
||||
# Put it all together! |
||||
PROMPT="$DALLAS_CURRENT_TIME_$DALLAS_CURRENT_RUBY_$DALLAS_CURRENT_MACH_$DALLAS_CURRENT_LOCA_ $DALLAS_CURRENT_USER_$DALLAS_PROMPT_CHAR_ " |
@ -1,9 +0,0 @@
@@ -1,9 +0,0 @@
|
||||
# meh. Dark Blood Rewind, a new beginning. |
||||
|
||||
PROMPT=$'%{$fg[red]%}┌[%{$fg_bold[white]%}%n%{$reset_color%}%{$fg[red]%}@%{$fg_bold[white]%}%m%{$reset_color%}%{$fg[red]%}] [%{$fg_bold[white]%}/dev/%y%{$reset_color%}%{$fg[red]%}] %{$(git_prompt_info)%}%(?,,%{$fg[red]%}[%{$fg_bold[white]%}%?%{$reset_color%}%{$fg[red]%}]) |
||||
%{$fg[red]%}└[%{$fg_bold[white]%}%~%{$reset_color%}%{$fg[red]%}]>%{$reset_color%} ' |
||||
PS2=$' %{$fg[red]%}|>%{$reset_color%} ' |
||||
|
||||
ZSH_THEME_GIT_PROMPT_PREFIX="%{$fg[red]%}[%{$fg_bold[white]%}" |
||||
ZSH_THEME_GIT_PROMPT_SUFFIX="%{$reset_color%}%{$fg[red]%}] " |
||||
ZSH_THEME_GIT_PROMPT_DIRTY=" %{$fg[red]%}⚡%{$reset_color%}" |
@ -1,7 +0,0 @@
@@ -1,7 +0,0 @@
|
||||
# Copied and modified from the oh-my-zsh theme from geoffgarside |
||||
# Red server name, green cwd, blue git status |
||||
|
||||
PROMPT='%{$fg[red]%}%m%{$reset_color%}:%{$fg[green]%}%c%{$reset_color%}$(git_prompt_info) %(!.#.$) ' |
||||
|
||||
ZSH_THEME_GIT_PROMPT_PREFIX=" %{$fg[blue]%}(" |
||||
ZSH_THEME_GIT_PROMPT_SUFFIX=")%{$reset_color%}" |
@ -1,56 +0,0 @@
@@ -1,56 +0,0 @@
|
||||
# the idea of this theme is to contain a lot of info in a small string, by |
||||
# compressing some parts and colorcoding, which bring useful visual cues, |
||||
# while limiting the amount of colors and such to keep it easy on the eyes. |
||||
# When a command exited >0, the timestamp will be in red and the exit code |
||||
# will be on the right edge. |
||||
# The exit code visual cues will only display once. |
||||
# (i.e. they will be reset, even if you hit enter a few times on empty command prompts) |
||||
|
||||
typeset -A host_repr |
||||
|
||||
# translate hostnames into shortened, colorcoded strings |
||||
host_repr=('dieter-ws-a7n8x-arch' "%{$fg_bold[green]%}ws" 'dieter-p4sci-arch' "%{$fg_bold[blue]%}p4") |
||||
|
||||
# local time, color coded by last return code |
||||
time_enabled="%(?.%{$fg[green]%}.%{$fg[red]%})%*%{$reset_color%}" |
||||
time_disabled="%{$fg[green]%}%*%{$reset_color%}" |
||||
time=$time_enabled |
||||
|
||||
# user part, color coded by privileges |
||||
local user="%(!.%{$fg[blue]%}.%{$fg[blue]%})%n%{$reset_color%}" |
||||
|
||||
# Hostname part. compressed and colorcoded per host_repr array |
||||
# if not found, regular hostname in default color |
||||
local host="@${host_repr[$HOST]:-$HOST}%{$reset_color%}" |
||||
|
||||
# Compacted $PWD |
||||
local pwd="%{$fg[blue]%}%c%{$reset_color%}" |
||||
|
||||
PROMPT='${time} ${user}${host} ${pwd} $(git_prompt_info)' |
||||
|
||||
# i would prefer 1 icon that shows the "most drastic" deviation from HEAD, |
||||
# but lets see how this works out |
||||
ZSH_THEME_GIT_PROMPT_PREFIX="%{$fg[yellow]%}" |
||||
ZSH_THEME_GIT_PROMPT_SUFFIX="%{$reset_color%} " |
||||
ZSH_THEME_GIT_PROMPT_DIRTY="%{$fg[green]%} %{$fg[yellow]%}?%{$fg[green]%}%{$reset_color%}" |
||||
ZSH_THEME_GIT_PROMPT_CLEAN="%{$fg[green]%}" |
||||
|
||||
# elaborate exitcode on the right when >0 |
||||
return_code_enabled="%(?..%{$fg[red]%}%? ↵%{$reset_color%})" |
||||
return_code_disabled= |
||||
return_code=$return_code_enabled |
||||
|
||||
RPS1='${return_code}' |
||||
|
||||
function accept-line-or-clear-warning () { |
||||
if [[ -z $BUFFER ]]; then |
||||
time=$time_disabled |
||||
return_code=$return_code_disabled |
||||
else |
||||
time=$time_enabled |
||||
return_code=$return_code_enabled |
||||
fi |
||||
zle accept-line |
||||
} |
||||
zle -N accept-line-or-clear-warning |
||||
bindkey '^M' accept-line-or-clear-warning |
@ -1,79 +0,0 @@
@@ -1,79 +0,0 @@
|
||||
# dogenpunk.zsh-theme |
||||
|
||||
MODE_INDICATOR="%{$fg_bold[red]%}❮%{$reset_color%}%{$fg[red]%}❮❮%{$reset_color%}" |
||||
local return_status="%{$fg[red]%}%(?..⏎)%{$reset_color%}" |
||||
|
||||
PROMPT='%{$fg[blue]%}%m%{$reset_color%}%{$fg_bold[white]%} ॐ %{$reset_color%}%{$fg[cyan]%}%~:%{$reset_color%}$(git_time_since_commit)$(git_prompt_info) |
||||
%{$fg[red]%}%!%{$reset_color%} $(prompt_char) ' |
||||
|
||||
ZSH_THEME_GIT_PROMPT_PREFIX="%{$fg_bold[green]%}git%{$reset_color%}@%{$bg[white]%}%{$fg[black]%}" |
||||
ZSH_THEME_GIT_PROMPT_SUFFIX="%{$reset_color%})" |
||||
ZSH_THEME_GIT_PROMPT_DIRTY="%{$fg[red]%}!%{$reset_color%}" |
||||
ZSH_THEME_GIT_PROMPT_CLEAN="" |
||||
|
||||
RPROMPT='${return_status}$(git_prompt_status)%{$reset_color%}' |
||||
|
||||
ZSH_THEME_GIT_PROMPT_ADDED="%{$fg[green]%} ✚" |
||||
ZSH_THEME_GIT_PROMPT_MODIFIED="%{$fg[blue]%} ✹" |
||||
ZSH_THEME_GIT_PROMPT_DELETED="%{$fg[red]%} ✖" |
||||
ZSH_THEME_GIT_PROMPT_RENAMED="%{$fg[magenta]%} ➜" |
||||
ZSH_THEME_GIT_PROMPT_UNMERGED="%{$fg[yellow]%} ═" |
||||
ZSH_THEME_GIT_PROMPT_UNTRACKED="%{$fg[cyan]%} ✭" |
||||
|
||||
function prompt_char() { |
||||
git branch >/dev/null 2>/dev/null && echo "%{$fg[green]%}±%{$reset_color%}" && return |
||||
hg root >/dev/null 2>/dev/null && echo "%{$fg_bold[red]%}☿%{$reset_color%}" && return |
||||
echo "%{$fg[cyan]%}◯ %{$reset_color%}" |
||||
} |
||||
|
||||
# Colors vary depending on time lapsed. |
||||
ZSH_THEME_GIT_TIME_SINCE_COMMIT_SHORT="%{$fg[green]%}" |
||||
ZSH_THEME_GIT_TIME_SHORT_COMMIT_MEDIUM="%{$fg[yellow]%}" |
||||
ZSH_THEME_GIT_TIME_SINCE_COMMIT_LONG="%{$fg[red]%}" |
||||
ZSH_THEME_GIT_TIME_SINCE_COMMIT_NEUTRAL="%{$fg[cyan]%}" |
||||
|
||||
# Determine the time since last commit. If branch is clean, |
||||
# use a neutral color, otherwise colors will vary according to time. |
||||
function git_time_since_commit() { |
||||
if git rev-parse --git-dir > /dev/null 2>&1; then |
||||
# Only proceed if there is actually a commit. |
||||
if git log -n 1 > /dev/null 2>&1; then |
||||
# Get the last commit. |
||||
last_commit=`git log --pretty=format:'%at' -1 2> /dev/null` |
||||
now=`date +%s` |
||||
seconds_since_last_commit=$((now-last_commit)) |
||||
|
||||
# Totals |
||||
MINUTES=$((seconds_since_last_commit / 60)) |
||||
HOURS=$((seconds_since_last_commit/3600)) |
||||
|
||||
# Sub-hours and sub-minutes |
||||
DAYS=$((seconds_since_last_commit / 86400)) |
||||
SUB_HOURS=$((HOURS % 24)) |
||||
SUB_MINUTES=$((MINUTES % 60)) |
||||
|
||||
if [[ -n $(git status -s 2> /dev/null) ]]; then |
||||
if [ "$MINUTES" -gt 30 ]; then |
||||
COLOR="$ZSH_THEME_GIT_TIME_SINCE_COMMIT_LONG" |
||||
elif [ "$MINUTES" -gt 10 ]; then |
||||
COLOR="$ZSH_THEME_GIT_TIME_SHORT_COMMIT_MEDIUM" |
||||
else |
||||
COLOR="$ZSH_THEME_GIT_TIME_SINCE_COMMIT_SHORT" |
||||
fi |
||||
else |
||||
COLOR="$ZSH_THEME_GIT_TIME_SINCE_COMMIT_NEUTRAL" |
||||
fi |
||||
|
||||
if [ "$HOURS" -gt 24 ]; then |
||||
echo "($COLOR${DAYS}d${SUB_HOURS}h${SUB_MINUTES}m%{$reset_color%}|" |
||||
elif [ "$MINUTES" -gt 60 ]; then |
||||
echo "($COLOR${HOURS}h${SUB_MINUTES}m%{$reset_color%}|" |
||||
else |
||||
echo "($COLOR${MINUTES}m%{$reset_color%}|" |
||||
fi |
||||
else |
||||
COLOR="$ZSH_THEME_GIT_TIME_SINCE_COMMIT_NEUTRAL" |
||||
echo "($COLOR~|" |
||||
fi |
||||
fi |
||||
} |
@ -1,14 +0,0 @@
@@ -1,14 +0,0 @@
|
||||
if [ $UID -eq 0 ]; then NCOLOR="red"; else NCOLOR="green"; fi |
||||
local return_code="%(?..%{$fg[red]%}%? ↵%{$reset_color%})" |
||||
|
||||
PROMPT='%{$fg[$NCOLOR]%}%n%{$reset_color%}@%{$fg[cyan]%}%m\ |
||||
%{$reset_color%}:%{$fg[magenta]%}%~\ |
||||
$(git_prompt_info) \ |
||||
%{$fg[red]%}%(!.#.»)%{$reset_color%} ' |
||||
PROMPT2='%{$fg[red]%}\ %{$reset_color%}' |
||||
RPS1='${return_code}' |
||||
|
||||
ZSH_THEME_GIT_PROMPT_PREFIX="%{$fg[yellow]%}(" |
||||
ZSH_THEME_GIT_PROMPT_CLEAN="%{$fg[green]%}○%{$reset_color%}" |
||||
ZSH_THEME_GIT_PROMPT_DIRTY="%{$fg[red]%}⚡%{$reset_color%}" |
||||
ZSH_THEME_GIT_PROMPT_SUFFIX="%{$fg[yellow]%})%{$reset_color%}" |
@ -1,16 +0,0 @@
@@ -1,16 +0,0 @@
|
||||
|
||||
ZSH_THEME_GIT_PROMPT_PREFIX=" %{$fg[green]%}" |
||||
ZSH_THEME_GIT_PROMPT_SUFFIX="%{$reset_color%}" |
||||
ZSH_THEME_GIT_PROMPT_DIRTY="%{$fg[red]%}!" |
||||
ZSH_THEME_GIT_PROMPT_CLEAN="" |
||||
|
||||
function prompt_char { |
||||
if [ $UID -eq 0 ]; then echo "%{$fg[red]%}#%{$reset_color%}"; else echo $; fi |
||||
} |
||||
|
||||
PROMPT='%(?, ,%{$fg[red]%}FAIL%{$reset_color%} |
||||
) |
||||
%{$fg[magenta]%}%n%{$reset_color%}@%{$fg[yellow]%}%m%{$reset_color%}: %{$fg_bold[blue]%}%~%{$reset_color%}$(git_prompt_info) |
||||
%_ $(prompt_char) ' |
||||
|
||||
RPROMPT='%{$fg[green]%}[%*]%{$reset_color%}' |
@ -1,19 +0,0 @@
@@ -1,19 +0,0 @@
|
||||
function prompt_char { |
||||
git branch >/dev/null 2>/dev/null && echo '±' && return |
||||
hg root >/dev/null 2>/dev/null && echo 'Hg' && return |
||||
echo '○' |
||||
} |
||||
|
||||
function virtualenv_info { |
||||
[ $VIRTUAL_ENV ] && echo '('`basename $VIRTUAL_ENV`') ' |
||||
} |
||||
|
||||
PROMPT=' |
||||
%{$fg[magenta]%}%n%{$reset_color%} at %{$fg[yellow]%}%m%{$reset_color%} in %{$fg_bold[green]%}%~%{$reset_color%}$(git_prompt_info) |
||||
$(virtualenv_info)$(prompt_char) ' |
||||
|
||||
ZSH_THEME_GIT_PROMPT_PREFIX=" on %{$fg[magenta]%}" |
||||
ZSH_THEME_GIT_PROMPT_SUFFIX="%{$reset_color%}" |
||||
ZSH_THEME_GIT_PROMPT_DIRTY="%{$fg[green]%}!" |
||||
ZSH_THEME_GIT_PROMPT_UNTRACKED="%{$fg[green]%}?" |
||||
ZSH_THEME_GIT_PROMPT_CLEAN="" |
@ -1,7 +0,0 @@
@@ -1,7 +0,0 @@
|
||||
# user, host, full path, and time/date |
||||
# on two lines for easier vgrepping |
||||
# entry in a nice long thread on the Arch Linux forums: https://bbs.archlinux.org/viewtopic.php?pid=521888#p521888 |
||||
PROMPT=$'%{\e[0;34m%}%B┌─[%b%{\e[0m%}%{\e[1;32m%}%n%{\e[1;34m%}@%{\e[0m%}%{\e[0;36m%}%m%{\e[0;34m%}%B]%b%{\e[0m%} - %b%{\e[0;34m%}%B[%b%{\e[1;37m%}%~%{\e[0;34m%}%B]%b%{\e[0m%} - %{\e[0;34m%}%B[%b%{\e[0;33m%}%!%{\e[0;34m%}%B]%b%{\e[0m%} |
||||
%{\e[0;34m%}%B└─%B[%{\e[1;35m%}$%{\e[0;34m%}%B]%{\e[0m%}%b ' |
||||
RPROMPT='[%*]' |
||||
PS2=$' \e[0;34m%}%B>%{\e[0m%}%b ' |
@ -1,23 +0,0 @@
@@ -1,23 +0,0 @@
|
||||
# RVM settings |
||||
if [[ -s ~/.rvm/scripts/rvm ]] ; then |
||||
RPS1="%{$fg[yellow]%}rvm:%{$reset_color%}%{$fg[red]%}\$(~/.rvm/bin/rvm-prompt)%{$reset_color%} $EPS1" |
||||
else |
||||
if which rbenv &> /dev/null; then |
||||
RPS1="%{$fg[yellow]%}rbenv:%{$reset_color%}%{$fg[red]%}\$(rbenv version | sed -e 's/ (set.*$//')%{$reset_color%} $EPS1" |
||||
fi |
||||
fi |
||||
|
||||
ZSH_THEME_GIT_PROMPT_PREFIX="%{$reset_color%}%{$fg[green]%}[" |
||||
ZSH_THEME_GIT_PROMPT_SUFFIX="]%{$reset_color%}" |
||||
ZSH_THEME_GIT_PROMPT_DIRTY="%{$fg[red]%}*%{$reset_color%}" |
||||
ZSH_THEME_GIT_PROMPT_CLEAN="" |
||||
|
||||
# Customized git status, oh-my-zsh currently does not allow render dirty status before branch |
||||
git_custom_status() { |
||||
local cb=$(git_current_branch) |
||||
if [ -n "$cb" ]; then |
||||
echo "$(parse_git_dirty)$ZSH_THEME_GIT_PROMPT_PREFIX$(git_current_branch)$ZSH_THEME_GIT_PROMPT_SUFFIX" |
||||
fi |
||||
} |
||||
|
||||
PROMPT='$(git_custom_status)%{$fg[cyan]%}[%~% ]%{$reset_color%}%B$%b ' |
@ -1,6 +0,0 @@
@@ -1,6 +0,0 @@
|
||||
PROMPT='%{$fg_bold[red]%}➜ %{$fg_bold[green]%}%p %{$fg_bold[white]%}%c %{$fg_bold[blue]%}$(git_prompt_info)%{$fg_bold[blue]%} % %{$reset_color%}' |
||||
|
||||
ZSH_THEME_GIT_PROMPT_PREFIX="git:(%{$fg[red]%}" |
||||
ZSH_THEME_GIT_PROMPT_SUFFIX="%{$reset_color%}" |
||||
ZSH_THEME_GIT_PROMPT_DIRTY="%{$fg[blue]%}) %{$fg[yellow]%}✗%{$reset_color%}" |
||||
ZSH_THEME_GIT_PROMPT_CLEAN="%{$fg[blue]%})" |
@ -1,30 +0,0 @@
@@ -1,30 +0,0 @@
|
||||
# Theme with full path names and hostname |
||||
# Handy if you work on different servers all the time; |
||||
|
||||
local return_code="%(?..%{$fg_bold[red]%}%? ↵%{$reset_color%})" |
||||
|
||||
function my_git_prompt_info() { |
||||
ref=$(git symbolic-ref HEAD 2> /dev/null) || return |
||||
GIT_STATUS=$(git_prompt_status) |
||||
[[ -n $GIT_STATUS ]] && GIT_STATUS=" $GIT_STATUS" |
||||
echo "$ZSH_THEME_GIT_PROMPT_PREFIX${ref#refs/heads/}$GIT_STATUS$ZSH_THEME_GIT_PROMPT_SUFFIX" |
||||
} |
||||
|
||||
# Colored prompt |
||||
ZSH_THEME_COLOR_USER="green" |
||||
ZSH_THEME_COLOR_HOST="green" |
||||
ZSH_THEME_COLOR_PWD="yellow" |
||||
test -n "$SSH_CONNECTION" && ZSH_THEME_COLOR_USER="red" && ZSH_THEME_COLOR_HOST="red" |
||||
test `id -u` = 0 && ZSH_THEME_COLOR_USER="magenta" && ZSH_THEME_COLOR_HOST="magenta" |
||||
PROMPT='%{$fg_bold[$ZSH_THEME_COLOR_USER]%}%n@%{$fg_bold[$ZSH_THEME_COLOR_HOST]%}%M%{$reset_color%}:%{$fg_bold[$ZSH_THEME_COLOR_PWD]%}%~%{$reset_color%} $(my_git_prompt_info)%(!.#.$) ' |
||||
RPS1="${return_code}" |
||||
|
||||
ZSH_THEME_GIT_PROMPT_PREFIX="%{$fg[cyan]%}(" |
||||
ZSH_THEME_GIT_PROMPT_SUFFIX=") %{$reset_color%}" |
||||
ZSH_THEME_GIT_PROMPT_UNTRACKED="%%" |
||||
ZSH_THEME_GIT_PROMPT_ADDED="+" |
||||
ZSH_THEME_GIT_PROMPT_MODIFIED="*" |
||||
ZSH_THEME_GIT_PROMPT_RENAMED="~" |
||||
ZSH_THEME_GIT_PROMPT_DELETED="!" |
||||
ZSH_THEME_GIT_PROMPT_UNMERGED="?" |
||||
|
@ -1,2 +0,0 @@
@@ -1,2 +0,0 @@
|
||||
# Evan describes this sexy prompt as: "a skinny, topless prompt" |
||||
PROMPT='%m :: %2~ %B»%b ' |
@ -1,42 +0,0 @@
@@ -1,42 +0,0 @@
|
||||
# fino-time.zsh-theme |
||||
|
||||
# Use with a dark background and 256-color terminal! |
||||
# Meant for people with RVM and git. Tested only on OS X 10.7. |
||||
|
||||
# You can set your computer name in the ~/.box-name file if you want. |
||||
|
||||
# Borrowing shamelessly from these oh-my-zsh themes: |
||||
# bira |
||||
# robbyrussell |
||||
# |
||||
# Also borrowing from http://stevelosh.com/blog/2010/02/my-extravagant-zsh-prompt/ |
||||
|
||||
function virtualenv_info { |
||||
[ $VIRTUAL_ENV ] && echo '('`basename $VIRTUAL_ENV`') ' |
||||
} |
||||
|
||||
function prompt_char { |
||||
git branch >/dev/null 2>/dev/null && echo '⠠⠵' && return |
||||
echo '○' |
||||
} |
||||
|
||||
function box_name { |
||||
[ -f ~/.box-name ] && cat ~/.box-name || echo ${SHORT_HOST:-$HOST} |
||||
} |
||||
|
||||
|
||||
rvm_ruby='' |
||||
if type rvm-prompt &>/dev/null; then |
||||
rvm_ruby='using%{$FG[243]%}‹$(rvm-prompt i v g)›%{$reset_color%}' |
||||
fi |
||||
|
||||
local git_info='$(git_prompt_info)' |
||||
|
||||
|
||||
PROMPT="╭─%{$FG[040]%}%n%{$reset_color%} %{$FG[239]%}at%{$reset_color%} %{$FG[033]%}$(box_name)%{$reset_color%} %{$FG[239]%}in%{$reset_color%} %{$terminfo[bold]$FG[226]%}%~%{$reset_color%}${git_info} %{$FG[239]%}${rvm_ruby} %D - %* |
||||
╰─$(virtualenv_info)$(prompt_char) " |
||||
|
||||
ZSH_THEME_GIT_PROMPT_PREFIX=" %{$FG[239]%}on%{$reset_color%} %{$fg[255]%}" |
||||
ZSH_THEME_GIT_PROMPT_SUFFIX="%{$reset_color%}" |
||||
ZSH_THEME_GIT_PROMPT_DIRTY="%{$FG[202]%}✘✘✘" |
||||
ZSH_THEME_GIT_PROMPT_CLEAN="%{$FG[040]%}✔" |
@ -1,42 +0,0 @@
@@ -1,42 +0,0 @@
|
||||
# fino.zsh-theme |
||||
|
||||
# Use with a dark background and 256-color terminal! |
||||
# Meant for people with rbenv and git. Tested only on OS X 10.7. |
||||
|
||||
# You can set your computer name in the ~/.box-name file if you want. |
||||
|
||||
# Borrowing shamelessly from these oh-my-zsh themes: |
||||
# bira |
||||
# robbyrussell |
||||
# |
||||
# Also borrowing from http://stevelosh.com/blog/2010/02/my-extravagant-zsh-prompt/ |
||||
|
||||
function prompt_char { |
||||
git branch >/dev/null 2>/dev/null && echo "±" && return |
||||
echo '○' |
||||
} |
||||
|
||||
function box_name { |
||||
[ -f ~/.box-name ] && cat ~/.box-name || echo ${SHORT_HOST:-$HOST} |
||||
} |
||||
|
||||
local ruby_env='' |
||||
if which rvm-prompt &> /dev/null; then |
||||
ruby_env='using%{$FG[243]%} ‹$(rvm-prompt i v g)›%{$reset_color%}' |
||||
else |
||||
if which rbenv &> /dev/null; then |
||||
ruby_env='using%{$FG[243]%} ‹$(rbenv version-name)›%{$reset_color%}' |
||||
fi |
||||
fi |
||||
|
||||
local git_info='$(git_prompt_info)' |
||||
local prompt_char='$(prompt_char)' |
||||
|
||||
|
||||
PROMPT="╭─%{$FG[040]%}%n%{$reset_color%} %{$FG[239]%}at%{$reset_color%} %{$FG[033]%}$(box_name)%{$reset_color%} %{$FG[239]%}in%{$reset_color%} %{$terminfo[bold]$FG[226]%}%~%{$reset_color%}${git_info} %{$FG[239]%}${ruby_env} |
||||
╰─${prompt_char}%{$reset_color%} " |
||||
|
||||
ZSH_THEME_GIT_PROMPT_PREFIX=" %{$FG[239]%}on%{$reset_color%} %{$fg[255]%}" |
||||
ZSH_THEME_GIT_PROMPT_SUFFIX="%{$reset_color%}" |
||||
ZSH_THEME_GIT_PROMPT_DIRTY="%{$FG[202]%}✘✘✘" |
||||
ZSH_THEME_GIT_PROMPT_CLEAN="%{$FG[040]%}✔" |
@ -1,29 +0,0 @@
@@ -1,29 +0,0 @@
|
||||
# ZSH Theme emulating the Fish shell's default prompt. |
||||
|
||||
_fishy_collapsed_wd() { |
||||
echo $(pwd | perl -pe ' |
||||
BEGIN { |
||||
binmode STDIN, ":encoding(UTF-8)"; |
||||
binmode STDOUT, ":encoding(UTF-8)"; |
||||
}; s|^$ENV{HOME}|~|g; s|/([^/.])[^/]*(?=/)|/$1|g; s|/\.([^/])[^/]*(?=/)|/.$1|g |
||||
') |
||||
} |
||||
|
||||
local user_color='green'; [ $UID -eq 0 ] && user_color='red' |
||||
PROMPT='%n@%m %{$fg[$user_color]%}$(_fishy_collapsed_wd)%{$reset_color%}%(!.#.>) ' |
||||
PROMPT2='%{$fg[red]%}\ %{$reset_color%}' |
||||
|
||||
local return_status="%{$fg_bold[red]%}%(?..%?)%{$reset_color%}" |
||||
RPROMPT='${return_status}$(git_prompt_info)$(git_prompt_status)%{$reset_color%}' |
||||
|
||||
ZSH_THEME_GIT_PROMPT_PREFIX=" " |
||||
ZSH_THEME_GIT_PROMPT_SUFFIX="" |
||||
ZSH_THEME_GIT_PROMPT_DIRTY="" |
||||
ZSH_THEME_GIT_PROMPT_CLEAN="" |
||||
|
||||
ZSH_THEME_GIT_PROMPT_ADDED="%{$fg_bold[green]%}+" |
||||
ZSH_THEME_GIT_PROMPT_MODIFIED="%{$fg_bold[blue]%}!" |
||||
ZSH_THEME_GIT_PROMPT_DELETED="%{$fg_bold[red]%}-" |
||||
ZSH_THEME_GIT_PROMPT_RENAMED="%{$fg_bold[magenta]%}>" |
||||
ZSH_THEME_GIT_PROMPT_UNMERGED="%{$fg_bold[yellow]%}#" |
||||
ZSH_THEME_GIT_PROMPT_UNTRACKED="%{$fg_bold[cyan]%}?" |
@ -1,19 +0,0 @@
@@ -1,19 +0,0 @@
|
||||
if [ "$USER" = "root" ] |
||||
then CARETCOLOR="red" |
||||
else CARETCOLOR="blue" |
||||
fi |
||||
|
||||
local return_code="%(?..%{$fg[red]%}%? ↵%{$reset_color%})" |
||||
|
||||
PROMPT='%m%{${fg_bold[magenta]}%} :: %{$reset_color%}%{${fg[green]}%}%3~ $(git_prompt_info)%{${fg_bold[$CARETCOLOR]}%}%#%{${reset_color}%} ' |
||||
|
||||
RPS1='$(vi_mode_prompt_info) ${return_code}' |
||||
|
||||
ZSH_THEME_GIT_PROMPT_PREFIX="%{$fg_bold[cyan]%}‹" |
||||
ZSH_THEME_GIT_PROMPT_SUFFIX="› %{$reset_color%}" |
||||
|
||||
MODE_INDICATOR="%{$fg_bold[magenta]%}<%{$reset_color%}%{$fg[magenta]%}<<%{$reset_color%}" |
||||
|
||||
# TODO use 265 colors |
||||
#MODE_INDICATOR="$FX[bold]$FG[020]<$FX[no_bold]%{$fg[blue]%}<<%{$reset_color%}" |
||||
# TODO use two lines if git |
@ -1,12 +0,0 @@
@@ -1,12 +0,0 @@
|
||||
# Copied from old version of tonotdo's theme. LSCOLORS modified. |
||||
PROMPT='%{$fg_no_bold[cyan]%}%n%{$fg_no_bold[magenta]%}•%{$fg_no_bold[green]%}%3~$(git_prompt_info)%{$reset_color%}» ' |
||||
RPROMPT='[%*]' |
||||
|
||||
# git theming |
||||
ZSH_THEME_GIT_PROMPT_PREFIX="%{$fg_bold[blue]%}(%{$fg_no_bold[red]%}" |
||||
ZSH_THEME_GIT_PROMPT_SUFFIX="" |
||||
ZSH_THEME_GIT_PROMPT_CLEAN="%{$fg_bold[blue]%})" |
||||
ZSH_THEME_GIT_PROMPT_DIRTY="%{$fg_bold[yellow]%}⚡%{$fg_bold[blue]%})" |
||||
|
||||
export LSCOLORS="exfxcxdxbxegedabagacad" |
||||
export LS_COLORS='no=00:fi=00:di=01;34:ln=00;36:pi=40;33:so=01;35:do=01;35:bd=40;33;01:cd=40;33;01:or=41;33;01:ex=00;32:*.cmd=00;32:*.exe=01;32:*.com=01;32:*.bat=01;32:*.btm=01;32:*.dll=01;32:*.tar=00;31:*.tbz=00;31:*.tgz=00;31:*.rpm=00;31:*.deb=00;31:*.arj=00;31:*.taz=00;31:*.lzh=00;31:*.lzma=00;31:*.zip=00;31:*.zoo=00;31:*.z=00;31:*.Z=00;31:*.gz=00;31:*.bz2=00;31:*.tb2=00;31:*.tz2=00;31:*.tbz2=00;31:*.avi=01;35:*.bmp=01;35:*.fli=01;35:*.gif=01;35:*.jpg=01;35:*.jpeg=01;35:*.mng=01;35:*.mov=01;35:*.mpg=01;35:*.pcx=01;35:*.pbm=01;35:*.pgm=01;35:*.png=01;35:*.ppm=01;35:*.tga=01;35:*.tif=01;35:*.xbm=01;35:*.xpm=01;35:*.dl=01;35:*.gl=01;35:*.wmv=01;35:*.aiff=00;32:*.au=00;32:*.mid=00;32:*.mp3=00;32:*.ogg=00;32:*.voc=00;32:*.wav=00;32:' |
@ -1,9 +0,0 @@
@@ -1,9 +0,0 @@
|
||||
# fox.zsh-theme |
||||
|
||||
PROMPT='%{$fg[cyan]%}┌[%{$fg_bold[white]%}%n%{$reset_color%}%{$fg[cyan]%}☮%{$fg_bold[white]%}%M%{$reset_color%}%{$fg[cyan]%}]%{$fg[white]%}-%{$fg[cyan]%}(%{$fg_bold[white]%}%~%{$reset_color%}%{$fg[cyan]%})$(git_prompt_info) |
||||
└> % %{$reset_color%}' |
||||
|
||||
ZSH_THEME_GIT_PROMPT_PREFIX="-[%{$reset_color%}%{$fg[white]%}git://%{$fg_bold[white]%}" |
||||
ZSH_THEME_GIT_PROMPT_SUFFIX="%{$reset_color%}%{$fg[cyan]%}]-" |
||||
ZSH_THEME_GIT_PROMPT_DIRTY=" %{$fg[red]%}✗%{$reset_color%}" |
||||
ZSH_THEME_GIT_PROMPT_CLEAN=" %{$fg[green]%}✔%{$reset_color%}" |
@ -1,12 +0,0 @@
@@ -1,12 +0,0 @@
|
||||
PROMPT=$' |
||||
%{$fg[blue]%}%/%{$reset_color%} $(git_prompt_info)$(bzr_prompt_info)%{$fg[white]%}[%n@%m]%{$reset_color%} %{$fg[white]%}[%T]%{$reset_color%} |
||||
%{$fg_bold[black]%}>%{$reset_color%} ' |
||||
|
||||
PROMPT2="%{$fg_blod[black]%}%_> %{$reset_color%}" |
||||
|
||||
GIT_CB="git::" |
||||
ZSH_THEME_SCM_PROMPT_PREFIX="%{$fg[green]%}[" |
||||
ZSH_THEME_GIT_PROMPT_PREFIX=$ZSH_THEME_SCM_PROMPT_PREFIX$GIT_CB |
||||
ZSH_THEME_GIT_PROMPT_SUFFIX="]%{$reset_color%} " |
||||
ZSH_THEME_GIT_PROMPT_DIRTY=" %{$fg[red]%}*%{$fg[green]%}" |
||||
ZSH_THEME_GIT_PROMPT_CLEAN="" |
@ -1,12 +0,0 @@
@@ -1,12 +0,0 @@
|
||||
local rvm="%{$fg[green]%}[$(rvm-prompt i v g)]%{$reset_color%}" |
||||
|
||||
PROMPT=' |
||||
%{$fg_bold[gray]%}%~%{$fg_bold[blue]%}%{$fg_bold[blue]%} % %{$reset_color%} |
||||
%{$fg[green]%}➞ %{$reset_color%' |
||||
|
||||
RPROMPT='$(git_prompt_info) ${rvm}' |
||||
|
||||
ZSH_THEME_GIT_PROMPT_PREFIX="%{$fg_bold[blue]%}[git:" |
||||
ZSH_THEME_GIT_PROMPT_SUFFIX="%{$reset_color%}" |
||||
ZSH_THEME_GIT_PROMPT_DIRTY="%{$fg[blue]%}] %{$fg[red]%}✖ %{$reset_color%}" |
||||
ZSH_THEME_GIT_PROMPT_CLEAN="%{$fg[blue]%}] %{$fg[green]%}✔%{$reset_color%}" |
@ -1,14 +0,0 @@
@@ -1,14 +0,0 @@
|
||||
# Taken from Tassilo's Blog |
||||
# https://tsdh.wordpress.com/2007/12/06/my-funky-zsh-prompt/ |
||||
|
||||
local blue_op="%{$fg[blue]%}[%{$reset_color%}" |
||||
local blue_cp="%{$fg[blue]%}]%{$reset_color%}" |
||||
local path_p="${blue_op}%~${blue_cp}" |
||||
local user_host="${blue_op}%n@%m${blue_cp}" |
||||
local ret_status="${blue_op}%?${blue_cp}" |
||||
local hist_no="${blue_op}%h${blue_cp}" |
||||
local smiley="%(?,%{$fg[green]%}:%)%{$reset_color%},%{$fg[red]%}:(%{$reset_color%})" |
||||
PROMPT="╭─${path_p}─${user_host}─${ret_status}─${hist_no} |
||||
╰─${blue_op}${smiley}${blue_cp} %# " |
||||
local cur_cmd="${blue_op}%_${blue_cp}" |
||||
PROMPT2="${cur_cmd}> " |
@ -1,6 +0,0 @@
@@ -1,6 +0,0 @@
|
||||
PROMPT='%{$fg_bold[green]%}%p %{$fg[cyan]%}%c%{$fg_bold[blue]%}$(git_prompt_info)%{$fg_bold[blue]%} % %{$reset_color%}' |
||||
|
||||
ZSH_THEME_GIT_PROMPT_PREFIX=" (%{$fg[red]%}" |
||||
ZSH_THEME_GIT_PROMPT_SUFFIX="%{$reset_color%}" |
||||
ZSH_THEME_GIT_PROMPT_DIRTY="%{$fg[blue]%}) %{$fg[yellow]%}✗%{$reset_color%}" |
||||
ZSH_THEME_GIT_PROMPT_CLEAN="%{$fg[blue]%})" |
@ -1,11 +0,0 @@
@@ -1,11 +0,0 @@
|
||||
# ZSH Theme - Preview: https://github.com/robbyrussell/oh-my-zsh/wiki/Themes#gallifrey |
||||
return_code="%(?..%{$fg[red]%}%? ↵%{$reset_color%})" |
||||
host_color="%(!.%{$fg[red]%}.%{$fg[green]%})" |
||||
|
||||
PROMPT="${host_color}%m%{$reset_color%} %2~ \$(git_prompt_info)%{$reset_color%}%B»%b " |
||||
RPS1="${return_code}" |
||||
|
||||
ZSH_THEME_GIT_PROMPT_PREFIX="%{$fg[yellow]%}‹" |
||||
ZSH_THEME_GIT_PROMPT_SUFFIX="› %{$reset_color%}" |
||||
|
||||
unset return_code host_color |
@ -1,23 +0,0 @@
@@ -1,23 +0,0 @@
|
||||
# Depends on the git plugin for work_in_progress() |
||||
|
||||
ZSH_THEME_GIT_PROMPT_PREFIX="%{$reset_color%}%{$fg[green]%}[" |
||||
ZSH_THEME_GIT_PROMPT_SUFFIX="]%{$reset_color%}" |
||||
ZSH_THEME_GIT_PROMPT_DIRTY="%{$fg[red]%}*%{$reset_color%}" |
||||
ZSH_THEME_GIT_PROMPT_CLEAN="" |
||||
|
||||
#Customized git status, oh-my-zsh currently does not allow render dirty status before branch |
||||
git_custom_status() { |
||||
local cb=$(git_current_branch) |
||||
if [ -n "$cb" ]; then |
||||
echo "$(parse_git_dirty)%{$fg_bold[yellow]%}$(work_in_progress)%{$reset_color%}$ZSH_THEME_GIT_PROMPT_PREFIX$(git_current_branch)$ZSH_THEME_GIT_PROMPT_SUFFIX" |
||||
fi |
||||
} |
||||
|
||||
# RVM component of prompt |
||||
ZSH_THEME_RVM_PROMPT_PREFIX="%{$fg[red]%}[" |
||||
ZSH_THEME_RVM_PROMPT_SUFFIX="]%{$reset_color%}" |
||||
|
||||
# Combine it all into a final right-side prompt |
||||
RPS1='$(git_custom_status)$(ruby_prompt_info) $EPS1' |
||||
|
||||
PROMPT='%{$fg[cyan]%}[%~% ]%(?.%{$fg[green]%}.%{$fg[red]%})%B$%b ' |
@ -1,6 +0,0 @@
@@ -1,6 +0,0 @@
|
||||
PROMPT='%{$fg[cyan]%}%c%{$fg_bold[blue]%}$(git_prompt_info)%{$fg_bold[blue]%}% %{$reset_color%}: ' |
||||
|
||||
ZSH_THEME_GIT_PROMPT_PREFIX="(%{$fg[blue]%}" |
||||
ZSH_THEME_GIT_PROMPT_SUFFIX="%{$reset_color%}" |
||||
ZSH_THEME_GIT_PROMPT_DIRTY="%{$fg[blue]%}) %{$fg[red]%}✗%{$reset_color%}" |
||||
ZSH_THEME_GIT_PROMPT_CLEAN="%{$fg[blue]%})" |
@ -1,8 +0,0 @@
@@ -1,8 +0,0 @@
|
||||
function prompt_char { |
||||
if [ $UID -eq 0 ]; then echo "#"; else echo $; fi |
||||
} |
||||
|
||||
PROMPT='%(!.%{$fg_bold[red]%}.%{$fg_bold[green]%}%n@)%m %{$fg_bold[blue]%}%(!.%1~.%~) $(git_prompt_info)%_$(prompt_char)%{$reset_color%} ' |
||||
|
||||
ZSH_THEME_GIT_PROMPT_PREFIX="(" |
||||
ZSH_THEME_GIT_PROMPT_SUFFIX=") " |
@ -1,5 +0,0 @@
@@ -1,5 +0,0 @@
|
||||
# PROMPT="[%*] %n:%c $(git_prompt_info)%(!.#.$) " |
||||
PROMPT='[%*] %{$fg[cyan]%}%n%{$reset_color%}:%{$fg[green]%}%c%{$reset_color%}$(git_prompt_info) %(!.#.$) ' |
||||
|
||||
ZSH_THEME_GIT_PROMPT_PREFIX=" %{$fg[yellow]%}git:(" |
||||
ZSH_THEME_GIT_PROMPT_SUFFIX=")%{$reset_color%}" |
@ -1,6 +0,0 @@
@@ -1,6 +0,0 @@
|
||||
PROMPT='[%{$fg_bold[white]%}%n%{$reset_color%}@%{$fg_bold[red]%}%m%{$reset_color%} %{$fg[cyan]%}%c%{$reset_color%} $(git_prompt_info)%{$reset_color%}]$ ' |
||||
|
||||
ZSH_THEME_GIT_PROMPT_PREFIX="(%{$fg_bold[green]%}" |
||||
ZSH_THEME_GIT_PROMPT_SUFFIX=")" |
||||
ZSH_THEME_GIT_PROMPT_DIRTY="%{$fg[green]%} %{$fg[yellow]%}✗%{$reset_color%}" |
||||
ZSH_THEME_GIT_PROMPT_CLEAN="%{$reset_color%}" |
@ -1,49 +0,0 @@
@@ -1,49 +0,0 @@
|
||||
# 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{blue}%~%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" |
||||
|
||||
} |
@ -1,15 +0,0 @@
@@ -1,15 +0,0 @@
|
||||
PROMPT='%{$fg_bold[red]%}➜ %{$fg_bold[green]%}%p %{$fg[cyan]%}%c %{$fg_bold[blue]%}$(git_prompt_info)%{$fg_bold[blue]%} % %{$reset_color%}' |
||||
|
||||
ZSH_THEME_GIT_PROMPT_PREFIX="(" |
||||
ZSH_THEME_GIT_PROMPT_SUFFIX=")" |
||||
ZSH_THEME_GIT_PROMPT_DIRTY="" |
||||
ZSH_THEME_GIT_PROMPT_CLEAN="" |
||||
|
||||
RPROMPT='$(git_prompt_status)%{$reset_color%}' |
||||
|
||||
ZSH_THEME_GIT_PROMPT_ADDED="%{$fg[cyan]%} ✈" |
||||
ZSH_THEME_GIT_PROMPT_MODIFIED="%{$fg[yellow]%} ✭" |
||||
ZSH_THEME_GIT_PROMPT_DELETED="%{$fg[red]%} ✗" |
||||
ZSH_THEME_GIT_PROMPT_RENAMED="%{$fg[blue]%} ➦" |
||||
ZSH_THEME_GIT_PROMPT_UNMERGED="%{$fg[magenta]%} ✂" |
||||
ZSH_THEME_GIT_PROMPT_UNTRACKED="%{$fg[grey]%} ✱" |
@ -1,96 +0,0 @@
@@ -1,96 +0,0 @@
|
||||
# prompt style and colors based on Steve Losh's Prose theme: |
||||
# https://github.com/sjl/oh-my-zsh/blob/master/themes/prose.zsh-theme |
||||
# |
||||
# vcs_info modifications from Bart Trojanowski's zsh prompt: |
||||
# http://www.jukie.net/bart/blog/pimping-out-zsh-prompt |
||||
# |
||||
# git untracked files modification from Brian Carper: |
||||
# https://briancarper.net/blog/570/git-info-in-your-zsh-prompt |
||||
|
||||
function virtualenv_info { |
||||
[ $VIRTUAL_ENV ] && echo '('`basename $VIRTUAL_ENV`') ' |
||||
} |
||||
PR_GIT_UPDATE=1 |
||||
|
||||
setopt prompt_subst |
||||
|
||||
autoload -U add-zsh-hook |
||||
autoload -Uz vcs_info |
||||
|
||||
#use extended color palette if available |
||||
if [[ $TERM = *256color* || $TERM = *rxvt* ]]; then |
||||
turquoise="%F{81}" |
||||
orange="%F{166}" |
||||
purple="%F{135}" |
||||
hotpink="%F{161}" |
||||
limegreen="%F{118}" |
||||
else |
||||
turquoise="$fg[cyan]" |
||||
orange="$fg[yellow]" |
||||
purple="$fg[magenta]" |
||||
hotpink="$fg[red]" |
||||
limegreen="$fg[green]" |
||||
fi |
||||
|
||||
# enable VCS systems you use |
||||
zstyle ':vcs_info:*' enable git svn |
||||
|
||||
# check-for-changes can be really slow. |
||||
# you should disable it, if you work with large repositories |
||||
zstyle ':vcs_info:*:prompt:*' check-for-changes true |
||||
|
||||
# set formats |
||||
# %b - branchname |
||||
# %u - unstagedstr (see below) |
||||
# %c - stagedstr (see below) |
||||
# %a - action (e.g. rebase-i) |
||||
# %R - repository path |
||||
# %S - path in the repository |
||||
PR_RST="%{${reset_color}%}" |
||||
FMT_BRANCH=" on %{$turquoise%}%b%u%c${PR_RST}" |
||||
FMT_ACTION=" performing a %{$limegreen%}%a${PR_RST}" |
||||
FMT_UNSTAGED="%{$orange%} ●" |
||||
FMT_STAGED="%{$limegreen%} ●" |
||||
|
||||
zstyle ':vcs_info:*:prompt:*' unstagedstr "${FMT_UNSTAGED}" |
||||
zstyle ':vcs_info:*:prompt:*' stagedstr "${FMT_STAGED}" |
||||
zstyle ':vcs_info:*:prompt:*' actionformats "${FMT_BRANCH}${FMT_ACTION}" |
||||
zstyle ':vcs_info:*:prompt:*' formats "${FMT_BRANCH}" |
||||
zstyle ':vcs_info:*:prompt:*' nvcsformats "" |
||||
|
||||
|
||||
function steeef_preexec { |
||||
case "$2" in |
||||
*git*) |
||||
PR_GIT_UPDATE=1 |
||||
;; |
||||
*svn*) |
||||
PR_GIT_UPDATE=1 |
||||
;; |
||||
esac |
||||
} |
||||
add-zsh-hook preexec steeef_preexec |
||||
|
||||
function steeef_chpwd { |
||||
PR_GIT_UPDATE=1 |
||||
} |
||||
add-zsh-hook chpwd steeef_chpwd |
||||
|
||||
function steeef_precmd { |
||||
if [[ -n "$PR_GIT_UPDATE" ]] ; then |
||||
# check for untracked files or updated submodules, since vcs_info doesn't |
||||
if [[ ! -z $(git ls-files --other --exclude-standard 2> /dev/null) ]]; then |
||||
PR_GIT_UPDATE=1 |
||||
FMT_BRANCH="${PM_RST} on %{$turquoise%}%b%u%c%{$hotpink%} ●${PR_RST}" |
||||
else |
||||
FMT_BRANCH="${PM_RST} on %{$turquoise%}%b%u%c${PR_RST}" |
||||
fi |
||||
zstyle ':vcs_info:*:prompt:*' formats "${FMT_BRANCH}" |
||||
|
||||
vcs_info 'prompt' |
||||
PR_GIT_UPDATE= |
||||
fi |
||||
} |
||||
add-zsh-hook precmd steeef_precmd |
||||
|
||||
PROMPT=$'%{$purple%}%n%{$reset_color%} in %{$limegreen%}%~%{$reset_color%}$(ruby_prompt_info " with%{$fg[red]%} " v g "%{$reset_color%}")$vcs_info_msg_0_%{$orange%} λ%{$reset_color%} ' |
@ -1,26 +0,0 @@
@@ -1,26 +0,0 @@
|
||||
# ZSH THEME Preview: https://skitch.com/huyy/rk979/humza.zshtheme |
||||
|
||||
let TotalBytes=0 |
||||
for Bytes in $(ls -l | grep "^-" | awk '{ print $5 }') |
||||
do |
||||
let TotalBytes=$TotalBytes+$Bytes |
||||
done |
||||
# should it say b, kb, Mb, or Gb |
||||
if [ $TotalBytes -lt 1024 ]; then |
||||
TotalSize=$(echo -e "scale=3 \n$TotalBytes \nquit" | bc) |
||||
suffix="b" |
||||
elif [ $TotalBytes -lt 1048576 ]; then |
||||
TotalSize=$(echo -e "scale=3 \n$TotalBytes/1024 \nquit" | bc) |
||||
suffix="kb" |
||||
elif [ $TotalBytes -lt 1073741824 ]; then |
||||
TotalSize=$(echo -e "scale=3 \n$TotalBytes/1048576 \nquit" | bc) |
||||
suffix="Mb" |
||||
else |
||||
TotalSize=$(echo -e "scale=3 \n$TotalBytes/1073741824 \nquit" | bc) |
||||
suffix="Gb" |
||||
fi |
||||
|
||||
PROMPT='%{$reset_color%}%n %{$fg[green]%}{%{$reset_color%}%~%{$fg[green]%}}%{$reset_color%}$(git_prompt_info) greetings, earthling %{$fg[green]%}[%{$reset_color%}%{$TotalSize%}%{$suffix%}%{$fg[green]%}]%{$fg[red]%}$%{$reset_color%} ☞ ' |
||||
|
||||
ZSH_THEME_GIT_PROMPT_PREFIX="%{$fg[red]%}±(" |
||||
ZSH_THEME_GIT_PROMPT_SUFFIX=");%{$reset_color%}" |
@ -1,5 +0,0 @@
@@ -1,5 +0,0 @@
|
||||
# Found on the ZshWiki |
||||
# http://zshwiki.org/home/config/prompt |
||||
# |
||||
|
||||
PROMPT="%{$fg[red]%}%%%{$reset_color%} " |
@ -1,23 +0,0 @@
@@ -1,23 +0,0 @@
|
||||
# A multiline prompt with username, hostname, full path, return status, git branch, git dirty status, git remote status |
||||
|
||||
local return_status="%{$fg[red]%}%(?..⏎)%{$reset_color%}" |
||||
|
||||
local host_color="green" |
||||
if [ -n "$SSH_CLIENT" ]; then |
||||
local host_color="red" |
||||
fi |
||||
|
||||
PROMPT=' |
||||
%{$fg_bold[grey]%}[%{$reset_color%}%{$fg_bold[${host_color}]%}%n@%m%{$reset_color%}%{$fg_bold[grey]%}]%{$reset_color%} %{$fg_bold[blue]%}%10c%{$reset_color%} $(git_prompt_info) $(git_remote_status) |
||||
%{$fg_bold[cyan]%}❯%{$reset_color%} ' |
||||
|
||||
|
||||
RPROMPT='${return_status}%{$reset_color%}' |
||||
|
||||
ZSH_THEME_GIT_PROMPT_PREFIX="%{$fg[grey]%}(%{$fg[red]%}" |
||||
ZSH_THEME_GIT_PROMPT_SUFFIX="%{$reset_color%}" |
||||
ZSH_THEME_GIT_PROMPT_DIRTY="%{$fg[grey]%}) %{$fg[yellow]%}⚡%{$reset_color%}" |
||||
ZSH_THEME_GIT_PROMPT_CLEAN="%{$fg[grey]%})" |
||||
ZSH_THEME_GIT_PROMPT_BEHIND_REMOTE="%{$fg_bold[magenta]%}↓%{$reset_color%}" |
||||
ZSH_THEME_GIT_PROMPT_AHEAD_REMOTE="%{$fg_bold[magenta]%}↑%{$reset_color%}" |
||||
ZSH_THEME_GIT_PROMPT_DIVERGED_REMOTE="%{$fg_bold[magenta]%}↕%{$reset_color%}" |
@ -1,16 +0,0 @@
@@ -1,16 +0,0 @@
|
||||
local smiley="%(?,%{$fg[green]%}☺%{$reset_color%},%{$fg[red]%}☹%{$reset_color%})" |
||||
|
||||
local user="%{$fg[cyan]%}%n%{$reset_color%}" |
||||
local host="%{$fg[cyan]%}@%m%{$reset_color%}" |
||||
local pwd="%{$fg[yellow]%}%~%{$reset_color%}" |
||||
|
||||
PROMPT='${user}${host} ${pwd} |
||||
${smiley} ' |
||||
|
||||
RPROMPT='$(rvm-prompt || rbenv version) %{$fg[white]%}$(git_prompt_info)%{$reset_color%}' |
||||
|
||||
ZSH_THEME_GIT_PROMPT_PREFIX="" |
||||
ZSH_THEME_GIT_PROMPT_SUFFIX="" |
||||
ZSH_THEME_GIT_PROMPT_DIRTY="%{$fg[red]%} ✗%{$reset_color%}" |
||||
ZSH_THEME_GIT_PROMPT_CLEAN="%{$fg[green]%} ✔%{$reset_color%}" |
||||
|
@ -1,16 +0,0 @@
@@ -1,16 +0,0 @@
|
||||
# jaischeema.zsh-theme |
||||
|
||||
PROMPT='%{$fg_bold[magenta]%}%m%{$reset_color%} at %{$fg_bold[green]%}%~%{$reset_color%} %{$fg_bold[blue]%}$(git_prompt_info)%{$fg_bold[blue]%}% %{$reset_color%}%{$fg[red]%}❯%{$reset_color%} ' |
||||
|
||||
ZSH_THEME_GIT_PROMPT_PREFIX="±(%{$fg[red]%}" |
||||
ZSH_THEME_GIT_PROMPT_SUFFIX="%{$reset_color%}" |
||||
ZSH_THEME_GIT_PROMPT_DIRTY="%{$fg[blue]%}) %{$fg[yellow]%}✗%{$reset_color%} " |
||||
ZSH_THEME_GIT_PROMPT_CLEAN="%{$fg[blue]%}) " |
||||
|
||||
if which rbenv &> /dev/null; then |
||||
RPROMPT='%{$fg[red]%}$(rbenv version | sed -e "s/ (set.*$//")%{$reset_color%}' |
||||
else |
||||
if which rvm-prompt &> /dev/null; then |
||||
RPROMPT='%{$fg[red]%}$(rvm-prompt)%{$reset_color%}' |
||||
fi |
||||
fi |
@ -1,6 +0,0 @@
@@ -1,6 +0,0 @@
|
||||
PROMPT='%{$fg_bold[red]%}➜ %{$fg_bold[green]%}%p %{$fg[cyan]%}%c %{$fg_bold[white]%}$(git_prompt_info)%{$fg_bold[white]%} % %{$reset_color%}' |
||||
|
||||
ZSH_THEME_GIT_PROMPT_PREFIX="git:(%{$fg[red]%}" |
||||
ZSH_THEME_GIT_PROMPT_SUFFIX="%{$reset_color%}" |
||||
ZSH_THEME_GIT_PROMPT_DIRTY="%{$fg[white]%}) %{$fg[yellow]%}✗%{$reset_color%}" |
||||
ZSH_THEME_GIT_PROMPT_CLEAN="%{$fg[white]%})" |
@ -1,10 +0,0 @@
@@ -1,10 +0,0 @@
|
||||
local ret_status="%(?:%{$fg_bold[green]%}➜ :%{$fg_bold[red]%}➜ %s)" |
||||
PROMPT=$'%{$fg[green]%}%n@%m: %{$reset_color%}%{$fg[blue]%}%/ %{$reset_color%}%{$fg_bold[blue]%}$(git_prompt_info)%{$fg_bold[blue]%} % %{$reset_color%} |
||||
${ret_status} %{$reset_color%} ' |
||||
|
||||
PROMPT2="%{$fg_blod[black]%}%_> %{$reset_color%}" |
||||
|
||||
ZSH_THEME_GIT_PROMPT_PREFIX="git:(%{$fg[red]%}" |
||||
ZSH_THEME_GIT_PROMPT_SUFFIX="%{$reset_color%}" |
||||
ZSH_THEME_GIT_PROMPT_DIRTY="%{$fg[blue]%}) %{$fg[yellow]%}✗%{$reset_color%}" |
||||
ZSH_THEME_GIT_PROMPT_CLEAN="%{$fg[blue]%})" |
@ -1,38 +0,0 @@
@@ -1,38 +0,0 @@
|
||||
autoload -U add-zsh-hook |
||||
autoload -Uz vcs_info |
||||
|
||||
zstyle ':vcs_info:*' actionformats \ |
||||
'%F{5}(%f%s%F{5})%F{3}-%F{5}[%F{2}%b%F{3}|%F{1}%a%F{5}]%f ' |
||||
zstyle ':vcs_info:*' formats '%F{2}%s%F{7}:%F{2}(%F{1}%b%F{2})%f ' |
||||
zstyle ':vcs_info:(sv[nk]|bzr):*' branchformat '%b%F{1}:%F{3}%r' |
||||
zstyle ':vcs_info:*' enable git |
||||
|
||||
add-zsh-hook precmd prompt_vcs |
||||
|
||||
prompt_vcs () { |
||||
vcs_info |
||||
|
||||
if [ "${vcs_info_msg_0_}" = "" ]; then |
||||
dir_status="%F{2}→%f" |
||||
elif [[ $(git diff --cached --name-status 2>/dev/null ) != "" ]]; then |
||||
dir_status="%F{1}▶%f" |
||||
elif [[ $(git diff --name-status 2>/dev/null ) != "" ]]; then |
||||
dir_status="%F{3}▶%f" |
||||
else |
||||
dir_status="%F{2}▶%f" |
||||
fi |
||||
} |
||||
|
||||
function { |
||||
if [[ -n "$SSH_CLIENT" ]]; then |
||||
PROMPT_HOST=" ($HOST)" |
||||
else |
||||
PROMPT_HOST='' |
||||
fi |
||||
} |
||||
|
||||
local ret_status="%(?:%{$fg_bold[green]%}Ξ:%{$fg_bold[red]%}%S↑%s%?)" |
||||
|
||||
PROMPT='${ret_status}%{$fg[blue]%}${PROMPT_HOST}%{$fg_bold[green]%}%p %{$fg_bold[yellow]%}%2~ ${vcs_info_msg_0_}${dir_status}%{$reset_color%} ' |
||||
|
||||
# vim: set ft=zsh ts=4 sw=4 et: |
@ -1,153 +0,0 @@
@@ -1,153 +0,0 @@
|
||||
functions rbenv_prompt_info >& /dev/null || rbenv_prompt_info(){} |
||||
|
||||
function theme_precmd { |
||||
local TERMWIDTH |
||||
(( TERMWIDTH = ${COLUMNS} - 1 )) |
||||
|
||||
|
||||
### |
||||
# Truncate the path if it's too long. |
||||
|
||||
PR_FILLBAR="" |
||||
PR_PWDLEN="" |
||||
|
||||
local promptsize=${#${(%):---(%n@%m:%l)---()--}} |
||||
local rubyprompt=`rvm_prompt_info || rbenv_prompt_info` |
||||
local rubypromptsize=${#${rubyprompt}} |
||||
local pwdsize=${#${(%):-%~}} |
||||
|
||||
if [[ "$promptsize + $rubypromptsize + $pwdsize" -gt $TERMWIDTH ]]; then |
||||
((PR_PWDLEN=$TERMWIDTH - $promptsize)) |
||||
else |
||||
PR_FILLBAR="\${(l.(($TERMWIDTH - ($promptsize + $rubypromptsize + $pwdsize)))..${PR_HBAR}.)}" |
||||
fi |
||||
|
||||
} |
||||
|
||||
|
||||
setopt extended_glob |
||||
theme_preexec () { |
||||
if [[ "$TERM" == "screen" ]]; then |
||||
local CMD=${1[(wr)^(*=*|sudo|-*)]} |
||||
echo -n "\ek$CMD\e\\" |
||||
fi |
||||
} |
||||
|
||||
|
||||
setprompt () { |
||||
### |
||||
# Need this so the prompt will work. |
||||
|
||||
setopt prompt_subst |
||||
|
||||
|
||||
### |
||||
# See if we can use colors. |
||||
|
||||
autoload zsh/terminfo |
||||
for color in RED GREEN YELLOW BLUE MAGENTA CYAN WHITE GREY; do |
||||
eval PR_$color='%{$terminfo[bold]$fg[${(L)color}]%}' |
||||
eval PR_LIGHT_$color='%{$fg[${(L)color}]%}' |
||||
(( count = $count + 1 )) |
||||
done |
||||
PR_NO_COLOUR="%{$terminfo[sgr0]%}" |
||||
|
||||
### |
||||
# Modify Git prompt |
||||
ZSH_THEME_GIT_PROMPT_PREFIX=" on %{$fg[green]%}" |
||||
ZSH_THEME_GIT_PROMPT_SUFFIX="%{$reset_color%}" |
||||
ZSH_THEME_GIT_PROMPT_DIRTY="" |
||||
ZSH_THEME_GIT_PROMPT_CLEAN="" |
||||
|
||||
ZSH_THEME_GIT_PROMPT_ADDED="%{$fg[green]%} ✚" |
||||
ZSH_THEME_GIT_PROMPT_MODIFIED="%{$fg[blue]%} ✹" |
||||
ZSH_THEME_GIT_PROMPT_DELETED="%{$fg[red]%} ✖" |
||||
ZSH_THEME_GIT_PROMPT_RENAMED="%{$fg[magenta]%} ➜" |
||||
ZSH_THEME_GIT_PROMPT_UNMERGED="%{$fg[yellow]%} ═" |
||||
ZSH_THEME_GIT_PROMPT_UNTRACKED="%{$fg[cyan]%} ✭" |
||||
|
||||
### |
||||
# See if we can use extended characters to look nicer. |
||||
# UTF-8 Fixed |
||||
|
||||
if [[ $(locale charmap) == "UTF-8" ]]; then |
||||
PR_SET_CHARSET="" |
||||
PR_SHIFT_IN="" |
||||
PR_SHIFT_OUT="" |
||||
PR_HBAR="─" |
||||
PR_ULCORNER="┌" |
||||
PR_LLCORNER="└" |
||||
PR_LRCORNER="┘" |
||||
PR_URCORNER="┐" |
||||
else |
||||
typeset -A altchar |
||||
set -A altchar ${(s..)terminfo[acsc]} |
||||
# Some stuff to help us draw nice lines |
||||
PR_SET_CHARSET="%{$terminfo[enacs]%}" |
||||
PR_SHIFT_IN="%{$terminfo[smacs]%}" |
||||
PR_SHIFT_OUT="%{$terminfo[rmacs]%}" |
||||
PR_HBAR='$PR_SHIFT_IN${altchar[q]:--}$PR_SHIFT_OUT' |
||||
PR_ULCORNER='$PR_SHIFT_IN${altchar[l]:--}$PR_SHIFT_OUT' |
||||
PR_LLCORNER='$PR_SHIFT_IN${altchar[m]:--}$PR_SHIFT_OUT' |
||||
PR_LRCORNER='$PR_SHIFT_IN${altchar[j]:--}$PR_SHIFT_OUT' |
||||
PR_URCORNER='$PR_SHIFT_IN${altchar[k]:--}$PR_SHIFT_OUT' |
||||
fi |
||||
|
||||
|
||||
### |
||||
# Decide if we need to set titlebar text. |
||||
|
||||
case $TERM in |
||||
xterm*) |
||||
PR_TITLEBAR=$'%{\e]0;%(!.-=*[ROOT]*=- | .)%n@%m:%~ | ${COLUMNS}x${LINES} | %y\a%}' |
||||
;; |
||||
screen) |
||||
PR_TITLEBAR=$'%{\e_screen \005 (\005t) | %(!.-=[ROOT]=- | .)%n@%m:%~ | ${COLUMNS}x${LINES} | %y\e\\%}' |
||||
;; |
||||
*) |
||||
PR_TITLEBAR='' |
||||
;; |
||||
esac |
||||
|
||||
|
||||
### |
||||
# Decide whether to set a screen title |
||||
if [[ "$TERM" == "screen" ]]; then |
||||
PR_STITLE=$'%{\ekzsh\e\\%}' |
||||
else |
||||
PR_STITLE='' |
||||
fi |
||||
|
||||
|
||||
### |
||||
# Finally, the prompt. |
||||
|
||||
PROMPT='$PR_SET_CHARSET$PR_STITLE${(e)PR_TITLEBAR}\ |
||||
$PR_CYAN$PR_ULCORNER$PR_HBAR$PR_GREY(\ |
||||
$PR_GREEN%$PR_PWDLEN<...<%~%<<\ |
||||
$PR_GREY)`rvm_prompt_info || rbenv_prompt_info`$PR_CYAN$PR_HBAR$PR_HBAR${(e)PR_FILLBAR}$PR_HBAR$PR_GREY(\ |
||||
$PR_CYAN%(!.%SROOT%s.%n)$PR_GREY@$PR_GREEN%m:%l\ |
||||
$PR_GREY)$PR_CYAN$PR_HBAR$PR_URCORNER\ |
||||
|
||||
$PR_CYAN$PR_LLCORNER$PR_BLUE$PR_HBAR(\ |
||||
$PR_YELLOW%D{%H:%M:%S}\ |
||||
$PR_LIGHT_BLUE%{$reset_color%}`git_prompt_info``git_prompt_status`$PR_BLUE)$PR_CYAN$PR_HBAR\ |
||||
$PR_HBAR\ |
||||
>$PR_NO_COLOUR ' |
||||
|
||||
# display exitcode on the right when >0 |
||||
return_code="%(?..%{$fg[red]%}%? ↵ %{$reset_color%})" |
||||
RPROMPT=' $return_code$PR_CYAN$PR_HBAR$PR_BLUE$PR_HBAR\ |
||||
($PR_YELLOW%D{%a,%b%d}$PR_BLUE)$PR_HBAR$PR_CYAN$PR_LRCORNER$PR_NO_COLOUR' |
||||
|
||||
PS2='$PR_CYAN$PR_HBAR\ |
||||
$PR_BLUE$PR_HBAR(\ |
||||
$PR_LIGHT_GREEN%_$PR_BLUE)$PR_HBAR\ |
||||
$PR_CYAN$PR_HBAR$PR_NO_COLOUR ' |
||||
} |
||||
|
||||
setprompt |
||||
|
||||
autoload -U add-zsh-hook |
||||
add-zsh-hook precmd theme_precmd |
||||
add-zsh-hook preexec theme_preexec |
@ -1,43 +0,0 @@
@@ -1,43 +0,0 @@
|
||||
grey='\e[0;90m' |
||||
|
||||
ZSH_THEME_GIT_PROMPT_PREFIX="%{$grey%}(" |
||||
ZSH_THEME_GIT_PROMPT_SUFFIX="%{$reset_color%}" |
||||
ZSH_THEME_GIT_PROMPT_DIRTY="%{$grey%}) %{$fg[yellow]%}✗%{$reset_color%}" |
||||
ZSH_THEME_GIT_PROMPT_CLEAN="%{$grey%})" |
||||
|
||||
function josh_prompt { |
||||
(( spare_width = ${COLUMNS} )) |
||||
prompt=" " |
||||
|
||||
branch=$(git_current_branch) |
||||
ruby_version=$(rvm_prompt_info || rbenv_prompt_info) |
||||
path_size=${#PWD} |
||||
branch_size=${#branch} |
||||
ruby_size=${#ruby_version} |
||||
user_machine_size=${#${(%):-%n@%m-}} |
||||
|
||||
if [[ ${#branch} -eq 0 ]] |
||||
then (( ruby_size = ruby_size + 1 )) |
||||
else |
||||
(( branch_size = branch_size + 4 )) |
||||
if [[ -n $(git status -s 2> /dev/null) ]]; then |
||||
(( branch_size = branch_size + 2 )) |
||||
fi |
||||
fi |
||||
|
||||
(( spare_width = ${spare_width} - (${user_machine_size} + ${path_size} + ${branch_size} + ${ruby_size}) )) |
||||
|
||||
while [ ${#prompt} -lt $spare_width ]; do |
||||
prompt=" $prompt" |
||||
done |
||||
|
||||
prompt="%{%F{green}%}$PWD$prompt%{%F{red}%}$(rvm_prompt_info || rbenv_prompt_info)%{$reset_color%} $(git_current_branch)" |
||||
|
||||
echo $prompt |
||||
} |
||||
|
||||
setopt prompt_subst |
||||
|
||||
PROMPT=' |
||||
%n@%m $(josh_prompt) |
||||
%(?,%{%F{green}%},%{%F{red}%})⚡%{$reset_color%} ' |
@ -1,14 +0,0 @@
@@ -1,14 +0,0 @@
|
||||
if [ $UID -eq 0 ]; then NCOLOR="red"; else NCOLOR="green"; fi |
||||
local return_code="%(?..%{$fg[red]%}%? ↵%{$reset_color%})" |
||||
|
||||
PROMPT='%{$fg[$NCOLOR]%}%n%{$fg[green]%}@%m%{$reset_color%} %~ \ |
||||
$(git_prompt_info)\ |
||||
%{$fg[red]%}%(!.#.»)%{$reset_color%} ' |
||||
PROMPT2='%{$fg[red]%}\ %{$reset_color%}' |
||||
RPS1='${return_code}' |
||||
|
||||
ZSH_THEME_GIT_PROMPT_PREFIX="%{$fg[green]%}±%{$fg[yellow]%}" |
||||
ZSH_THEME_GIT_PROMPT_SUFFIX="%{$reset_color%} " |
||||
ZSH_THEME_GIT_PROMPT_CLEAN="" |
||||
ZSH_THEME_GIT_PROMPT_DIRTY="⚡" |
||||
|
@ -1,8 +0,0 @@
@@ -1,8 +0,0 @@
|
||||
#PROMPT='%{$fg_bold[red]%}➜ %{$fg_bold[green]%}%p %{$fg[cyan]%}%c %{$fg_bold[blue]%}$(git_prompt_info)%{$fg_bold[blue]%} % %{$reset_color%}' |
||||
PROMPT="%{$fg_bold[cyan]%}%T%{$fg_bold[green]%} %{$fg_bold[white]%}%n%{$fg[magenta]%}@%{$fg_bold[white]%}%m %{$fg_bold[green]%}%d |
||||
%{$fg_bold[yellow]%}%% %{$reset_color%}" |
||||
|
||||
#ZSH_THEME_GIT_PROMPT_PREFIX="git:(%{$fg[red]%}" |
||||
#ZSH_THEME_GIT_PROMPT_SUFFIX="%{$reset_color%}" |
||||
#ZSH_THEME_GIT_PROMPT_DIRTY="%{$fg[blue]%}) %{$fg[yellow]%}✗%{$reset_color%}" |
||||
#ZSH_THEME_GIT_PROMPT_CLEAN="%{$fg[blue]%})" |
@ -1,41 +0,0 @@
@@ -1,41 +0,0 @@
|
||||
# Color shortcuts |
||||
RED=$fg[red] |
||||
YELLOW=$fg[yellow] |
||||
GREEN=$fg[green] |
||||
WHITE=$fg[white] |
||||
BLUE=$fg[blue] |
||||
RED_BOLD=$fg_bold[red] |
||||
YELLOW_BOLD=$fg_bold[yellow] |
||||
GREEN_BOLD=$fg_bold[green] |
||||
WHITE_BOLD=$fg_bold[white] |
||||
BLUE_BOLD=$fg_bold[blue] |
||||
RESET_COLOR=$reset_color |
||||
|
||||
# Format for git_prompt_info() |
||||
ZSH_THEME_GIT_PROMPT_PREFIX="" |
||||
ZSH_THEME_GIT_PROMPT_SUFFIX="" |
||||
|
||||
# Format for parse_git_dirty() |
||||
ZSH_THEME_GIT_PROMPT_DIRTY=" %{$RED%}(*)" |
||||
ZSH_THEME_GIT_PROMPT_CLEAN="" |
||||
|
||||
# Format for git_prompt_status() |
||||
ZSH_THEME_GIT_PROMPT_UNMERGED=" %{$RED%}unmerged" |
||||
ZSH_THEME_GIT_PROMPT_DELETED=" %{$RED%}deleted" |
||||
ZSH_THEME_GIT_PROMPT_RENAMED=" %{$YELLOW%}renamed" |
||||
ZSH_THEME_GIT_PROMPT_MODIFIED=" %{$YELLOW%}modified" |
||||
ZSH_THEME_GIT_PROMPT_ADDED=" %{$GREEN%}added" |
||||
ZSH_THEME_GIT_PROMPT_UNTRACKED=" %{$WHITE%}untracked" |
||||
|
||||
# Format for git_prompt_ahead() |
||||
ZSH_THEME_GIT_PROMPT_AHEAD=" %{$RED%}(!)" |
||||
|
||||
# Format for git_prompt_long_sha() and git_prompt_short_sha() |
||||
ZSH_THEME_GIT_PROMPT_SHA_BEFORE=" %{$WHITE%}[%{$YELLOW%}" |
||||
ZSH_THEME_GIT_PROMPT_SHA_AFTER="%{$WHITE%}]" |
||||
|
||||
# Prompt format |
||||
PROMPT=' |
||||
%{$GREEN_BOLD%}%n@%m%{$WHITE%}:%{$YELLOW%}%~%u$(parse_git_dirty)$(git_prompt_ahead)%{$RESET_COLOR%} |
||||
%{$BLUE%}>%{$RESET_COLOR%} ' |
||||
RPROMPT='%{$GREEN_BOLD%}$(git_current_branch)$(git_prompt_short_sha)$(git_prompt_status)%{$RESET_COLOR%}' |
@ -1,30 +0,0 @@
@@ -1,30 +0,0 @@
|
||||
# Totally ripped off Dallas theme |
||||
|
||||
# Grab the current date (%W) and time (%t): |
||||
JUNKFOOD_TIME_="%{$fg_bold[red]%}#%{$fg_bold[white]%}( %{$fg_bold[yellow]%}%W%{$reset_color%}@%{$fg_bold[white]%}%t )( %{$reset_color%}" |
||||
|
||||
# Grab the current machine name |
||||
JUNKFOOD_MACHINE_="%{$fg_bold[blue]%}%m%{$fg[white]%} ):%{$reset_color%}" |
||||
|
||||
# Grab the current username |
||||
JUNKFOOD_CURRENT_USER_="%{$fg_bold[green]%}%n%{$reset_color%}" |
||||
|
||||
# Grab the current filepath, use shortcuts: ~/Desktop |
||||
# Append the current git branch, if in a git repository: ~aw@master |
||||
JUNKFOOD_LOCA_="%{$fg[cyan]%}%~\$(git_prompt_info)%{$reset_color%}" |
||||
|
||||
# For the git prompt, use a white @ and blue text for the branch name |
||||
ZSH_THEME_GIT_PROMPT_PREFIX="%{$fg[white]%}@%{$fg_bold[white]%}" |
||||
|
||||
# Close it all off by resetting the color and styles. |
||||
ZSH_THEME_GIT_PROMPT_SUFFIX="%{$reset_color%}" |
||||
|
||||
# Do nothing if the branch is clean (no changes). |
||||
ZSH_THEME_GIT_PROMPT_CLEAN="%{$fg_bold[green]%}✔" |
||||
|
||||
# Add 3 cyan ✗s if this branch is diiirrrty! Dirty branch! |
||||
ZSH_THEME_GIT_PROMPT_DIRTY="%{$fg_bold[red]%}✗✗✗" |
||||
|
||||
# Put it all together! |
||||
PROMPT="$JUNKFOOD_TIME_$JUNKFOOD_CURRENT_USER_@$JUNKFOOD_MACHINE_$JUNKFOOD_LOCA_ |
||||
" |
@ -1,6 +0,0 @@
@@ -1,6 +0,0 @@
|
||||
PROMPT='%{$fg_bold[red]%}➜ %{$fg_bold[green]%}%n%{$fg[cyan]%}@%{$fg_bold[green]%}%m %{$fg_bold[green]%}%p %{$fg[cyan]%}%~ %{$fg_bold[blue]%}$(git_prompt_info)%{$fg_bold[blue]%} % %{$reset_color%}' |
||||
|
||||
ZSH_THEME_GIT_PROMPT_PREFIX="git:(%{$fg[red]%}" |
||||
ZSH_THEME_GIT_PROMPT_SUFFIX="%{$reset_color%}" |
||||
ZSH_THEME_GIT_PROMPT_DIRTY="%{$fg[blue]%}) %{$fg[yellow]%}✗%{$reset_color%}" |
||||
ZSH_THEME_GIT_PROMPT_CLEAN="%{$fg[blue]%})" |
@ -1,12 +0,0 @@
@@ -1,12 +0,0 @@
|
||||
# Simple theme based on my old zsh settings. |
||||
|
||||
function get_host { |
||||
echo '@'$HOST |
||||
} |
||||
|
||||
PROMPT='> ' |
||||
RPROMPT='%~$(git_prompt_info)$(get_host)' |
||||
|
||||
ZSH_THEME_GIT_PROMPT_DIRTY="%{$fg[yellow]%}✗%{$reset_color%}" |
||||
ZSH_THEME_GIT_PROMPT_PREFIX="(" |
||||
ZSH_THEME_GIT_PROMPT_SUFFIX=")" |
@ -1,12 +0,0 @@
@@ -1,12 +0,0 @@
|
||||
# |
||||
# Kiwi ZSH Theme |
||||
# |
||||
|
||||
PROMPT='%{$fg_bold[green]%}┌[%{$fg_bold[cyan]%}kiwish-4.2%{$fg_bold[green]%}]-(%{$fg_bold[white]%}%2~%{$fg_bold[green]%})-$(git_prompt_info)$(svn_prompt_info)$(battery_pct_prompt) |
||||
└> % %{$reset_color%}' |
||||
|
||||
ZSH_THEME_GIT_PROMPT_PREFIX="[%{$reset_color%}%{$fg[white]%}git:%{$fg_bold[white]%}" |
||||
ZSH_THEME_GIT_PROMPT_SUFFIX="%{$fg_bold[green]%}]-" |
||||
|
||||
ZSH_THEME_SVN_PROMPT_PREFIX="[%{$reset_color%}%{$fg[white]%}svn:%{$fg_bold[white]%}/" |
||||
ZSH_THEME_SVN_PROMPT_SUFFIX="%{$fg_bold[green]%}]-" |
@ -1,22 +0,0 @@
@@ -1,22 +0,0 @@
|
||||
autoload -Uz vcs_info |
||||
|
||||
zstyle ':vcs_info:*' stagedstr '%F{green}●' |
||||
zstyle ':vcs_info:*' unstagedstr '%F{yellow}●' |
||||
zstyle ':vcs_info:*' check-for-changes true |
||||
zstyle ':vcs_info:(sv[nk]|bzr):*' branchformat '%b%F{1}:%F{11}%r' |
||||
zstyle ':vcs_info:*' enable git svn |
||||
theme_precmd () { |
||||
if [[ -z $(git ls-files --other --exclude-standard 2> /dev/null) ]] { |
||||
zstyle ':vcs_info:*' formats ' [%b%c%u%B%F{green}]' |
||||
} else { |
||||
zstyle ':vcs_info:*' formats ' [%b%c%u%B%F{red}●%F{green}]' |
||||
} |
||||
|
||||
vcs_info |
||||
} |
||||
|
||||
setopt prompt_subst |
||||
PROMPT='%B%F{magenta}%c%B%F{green}${vcs_info_msg_0_}%B%F{magenta} %{$reset_color%}%% ' |
||||
|
||||
autoload -U add-zsh-hook |
||||
add-zsh-hook precmd theme_precmd |
@ -1,43 +0,0 @@
@@ -1,43 +0,0 @@
|
||||
# kphoen.zsh-theme |
||||
|
||||
if [[ "$TERM" != "dumb" ]] && [[ "$DISABLE_LS_COLORS" != "true" ]]; then |
||||
PROMPT='[%{$fg[red]%}%n%{$reset_color%}@%{$fg[magenta]%}%m%{$reset_color%}:%{$fg[blue]%}%~%{$reset_color%}$(git_prompt_info)] |
||||
%# ' |
||||
|
||||
ZSH_THEME_GIT_PROMPT_PREFIX=" on %{$fg[green]%}" |
||||
ZSH_THEME_GIT_PROMPT_SUFFIX="%{$reset_color%}" |
||||
ZSH_THEME_GIT_PROMPT_DIRTY="" |
||||
ZSH_THEME_GIT_PROMPT_CLEAN="" |
||||
|
||||
# display exitcode on the right when >0 |
||||
return_code="%(?..%{$fg[red]%}%? ↵%{$reset_color%})" |
||||
|
||||
RPROMPT='${return_code}$(git_prompt_status)%{$reset_color%}' |
||||
|
||||
ZSH_THEME_GIT_PROMPT_ADDED="%{$fg[green]%} ✚" |
||||
ZSH_THEME_GIT_PROMPT_MODIFIED="%{$fg[blue]%} ✹" |
||||
ZSH_THEME_GIT_PROMPT_DELETED="%{$fg[red]%} ✖" |
||||
ZSH_THEME_GIT_PROMPT_RENAMED="%{$fg[magenta]%} ➜" |
||||
ZSH_THEME_GIT_PROMPT_UNMERGED="%{$fg[yellow]%} ═" |
||||
ZSH_THEME_GIT_PROMPT_UNTRACKED="%{$fg[cyan]%} ✭" |
||||
else |
||||
PROMPT='[%n@%m:%~$(git_prompt_info)] |
||||
%# ' |
||||
|
||||
ZSH_THEME_GIT_PROMPT_PREFIX=" on" |
||||
ZSH_THEME_GIT_PROMPT_SUFFIX="" |
||||
ZSH_THEME_GIT_PROMPT_DIRTY="" |
||||
ZSH_THEME_GIT_PROMPT_CLEAN="" |
||||
|
||||
# display exitcode on the right when >0 |
||||
return_code="%(?..%? ↵)" |
||||
|
||||
RPROMPT='${return_code}$(git_prompt_status)' |
||||
|
||||
ZSH_THEME_GIT_PROMPT_ADDED=" ✚" |
||||
ZSH_THEME_GIT_PROMPT_MODIFIED=" ✹" |
||||
ZSH_THEME_GIT_PROMPT_DELETED=" ✖" |
||||
ZSH_THEME_GIT_PROMPT_RENAMED=" ➜" |
||||
ZSH_THEME_GIT_PROMPT_UNMERGED=" ═" |
||||
ZSH_THEME_GIT_PROMPT_UNTRACKED=" ✭" |
||||
fi |
@ -1,4 +0,0 @@
@@ -1,4 +0,0 @@
|
||||
PROMPT='λ %~/ $(git_prompt_info)%{$reset_color%}' |
||||
|
||||
ZSH_THEME_GIT_PROMPT_PREFIX="%{$fg[green]%}" |
||||
ZSH_THEME_GIT_PROMPT_SUFFIX="%{$reset_color%} " |
@ -1,79 +0,0 @@
@@ -1,79 +0,0 @@
|
||||
# vim: set ts=2 textwidth=0 |
||||
|
||||
autoload -U add-zsh-hook |
||||
autoload -Uz vcs_info |
||||
local c0=$(printf "\033[0m") |
||||
local c1=$(printf "\033[38;5;215m") |
||||
local c2=$(printf "\033[38;5;209m") |
||||
local c3=$(printf "\033[38;5;203m") |
||||
local c4=$(printf "\033[33;4m") |
||||
local c5=$(printf "\033[38;5;137m") |
||||
local c6=$(printf "\033[38;5;240m") |
||||
local c7=$(printf "\033[38;5;149m") |
||||
local c8=$(printf "\033[38;5;126m") |
||||
local c9=$(printf "\033[38;5;162m") |
||||
|
||||
|
||||
if [ "$TERM" = "linux" ]; then |
||||
c1=$(printf "\033[34;1m") |
||||
c2=$(printf "\033[35m") |
||||
c3=$(printf "\033[31m") |
||||
c4=$(printf "\033[31;1m") |
||||
c5=$(printf "\033[32m") |
||||
c6=$(printf "\033[32;1m") |
||||
c7=$(printf "\033[33m") |
||||
c8=$(printf "\033[33;1m") |
||||
c9=$(printf "\033[34m") |
||||
fi |
||||
|
||||
#local newtv=$(perl $HOME/devel/newtv.pl) |
||||
local newtv='' |
||||
|
||||
zstyle ':vcs_info:*' actionformats \ |
||||
'%{$c8%}(%f%s)%{$c7%}-%F{5}[%F{2}%b%F{3}|%F{1}%a%F{5}]%f ' |
||||
zstyle ':vcs_info:*' formats \ |
||||
"%{$c8%}%s%{$c7%}:%{$c7%}(%{$c9%}%b%{$c7%})%f " |
||||
zstyle ':vcs_info:(sv[nk]|bzr):*' branchformat '%b%F{1}:%F{3}%r' |
||||
zstyle ':vcs_info:*' enable git |
||||
|
||||
add-zsh-hook precmd prompt_jnrowe_precmd |
||||
|
||||
prompt_jnrowe_precmd () { |
||||
vcs_info |
||||
|
||||
if [ "${vcs_info_msg_0_}" = "" ]; then |
||||
#dir_status="|%F{3}%n%F{7}@%F{3}%m%F{7}:%F{9}%l%f" |
||||
#dir_status="$c1%n%F{7}@%F{9}%m%F{7}:%F{12}%/" |
||||
dir_status="%{$c1%}%n%{$c4%}@%{$c2%}%m%{$c0%}:%{$c3%}%l%{$c6%}->%{$c4%}%/ %{$c0%}(%{$c5%}%?%{$c0%})" |
||||
#dir_status="%{$c1%}%n%{$c4%}@%{$c2%}%m%{$c0%}:%{$c3%}%l%{$c6%}->%{$foopath%} %{$c0%}(%{$c5%}%?%{$c0%})" |
||||
|
||||
PROMPT='%{$fg_bold[green]%}%p%{$reset_color%}${vcs_info_msg_0_}${dir_status} ${ret_status}%{$reset_color%} |
||||
> ' |
||||
elif [[ $(git diff --cached --name-status 2>/dev/null ) != "" ]]; then |
||||
dir_status="%{$c1%}%n%{$c4%}@%{$c2%}%m%{$c0%}:%{$c3%}%l%{$c6%}->%{$c4%}%/ %{$c0%}(%{$c5%}%?%{$c0%})" |
||||
PROMPT='${vcs_info_msg_0_} |
||||
%{$fg_bold[green]%}%p%{$reset_color%}${dir_status} ${vcs_info_msg_0_}%{$reset_color%} |
||||
> ' |
||||
|
||||
elif [[ $(git diff --name-status 2>/dev/null ) != "" ]]; then |
||||
dir_status="%{$c1%}%n%{$c4%}@%{$c2%}%m%{$c0%}:%{$c3%}%l%{$c6%}->%{$c4%}%/ %{$c0%}(%{$c5%}%?%{$c0%})" |
||||
|
||||
PROMPT='${vcs_info_msg_0_} |
||||
%{$fg_bold[green]%}%p%{$reset_color%}${dir_status}%{$reset_color%} |
||||
%{$c9%}·>%{$c0%} ' |
||||
else |
||||
dir_status="%{$c1%}%n%{$c4%}@%{$c2%}%m%{$c0%}:%{$c3%}%l%{$c6%}->%{$c4%}%/ %{$c0%}(%{$c5%}%?%{$c0%})" |
||||
PROMPT='${vcs_info_msg_0_} |
||||
%{$fg_bold[green]%}%p%{$reset_color%}${dir_status} ${vcs_info_msg_0_}%{$reset_color%} |
||||
> ' |
||||
|
||||
fi |
||||
} |
||||
|
||||
|
||||
#PROMPT='${ret_status}%{$fg_bold[green]%}%p %{$reset_color%} ${vcs_info_msg_0_}${dir_status}%{$reset_color%} |
||||
#> ' |
||||
|
||||
# vim: set ft=zsh ts=4 sw=4 et: |
||||
|
||||
|
@ -1,24 +0,0 @@
@@ -1,24 +0,0 @@
|
||||
# ZSH Theme - Preview: https://cl.ly/f701d00760f8059e06dc |
||||
# Thanks to gallifrey, upon whose theme this is based |
||||
|
||||
local return_code="%(?..%{$fg_bold[red]%}%? ↵%{$reset_color%})" |
||||
|
||||
function my_git_prompt_info() { |
||||
ref=$(git symbolic-ref HEAD 2> /dev/null) || return |
||||
GIT_STATUS=$(git_prompt_status) |
||||
[[ -n $GIT_STATUS ]] && GIT_STATUS=" $GIT_STATUS" |
||||
echo "$ZSH_THEME_GIT_PROMPT_PREFIX${ref#refs/heads/}$GIT_STATUS$ZSH_THEME_GIT_PROMPT_SUFFIX" |
||||
} |
||||
|
||||
PROMPT='%{$fg_bold[green]%}%n@%m%{$reset_color%} %{$fg_bold[blue]%}%2~%{$reset_color%} $(my_git_prompt_info)%{$reset_color%}%B»%b ' |
||||
RPS1="${return_code}" |
||||
|
||||
ZSH_THEME_GIT_PROMPT_PREFIX="%{$fg[yellow]%}(" |
||||
ZSH_THEME_GIT_PROMPT_SUFFIX=") %{$reset_color%}" |
||||
ZSH_THEME_GIT_PROMPT_UNTRACKED="%%" |
||||
ZSH_THEME_GIT_PROMPT_ADDED="+" |
||||
ZSH_THEME_GIT_PROMPT_MODIFIED="*" |
||||
ZSH_THEME_GIT_PROMPT_RENAMED="~" |
||||
ZSH_THEME_GIT_PROMPT_DELETED="!" |
||||
ZSH_THEME_GIT_PROMPT_UNMERGED="?" |
||||
|
@ -1,15 +0,0 @@
@@ -1,15 +0,0 @@
|
||||
# ZSH Theme - Preview: https://i.gyazo.com/8becc8a7ed5ab54a0262a470555c3eed.png |
||||
local return_code="%(?..%{$fg[red]%}%? ↵%{$reset_color%})" |
||||
|
||||
if [ -e ~/.rvm/bin/rvm-prompt ]; then |
||||
PROMPT='%{$fg[green]%}%~%{$reset_color%} %{$fg[red]%}‹$(~/.rvm/bin/rvm-prompt i v)› %{$reset_color%} $(git_prompt_info)%{$reset_color%}%B$%b ' |
||||
else |
||||
if which rbenv &> /dev/null; then |
||||
PROMPT='%{$fg[green]%}%~%{$reset_color%} %{$fg[red]%}‹$(rbenv version | sed -e "s/ (set.*$//")› %{$reset_color%} $(git_prompt_info)%{$reset_color%}%B$%b ' |
||||
fi |
||||
fi |
||||
|
||||
RPS1="${return_code}" |
||||
|
||||
ZSH_THEME_GIT_PROMPT_PREFIX="%{$fg[yellow]%}‹" |
||||
ZSH_THEME_GIT_PROMPT_SUFFIX="› %{$reset_color%}" |
@ -1,14 +0,0 @@
@@ -1,14 +0,0 @@
|
||||
# ZSH Theme - Preview: https://i.gyazo.com/8becc8a7ed5ab54a0262a470555c3eed.png |
||||
local return_code="%(?..%{$fg[red]%}%? ↵%{$reset_color%})" |
||||
|
||||
if [ -e ~/.rvm/bin/rvm-prompt ]; then |
||||
PROMPT='%{$fg[green]%}%~%{$reset_color%} %{$fg[red]%}‹$(~/.rvm/bin/rvm-prompt i v)› %{$reset_color%} $(git_prompt_info)%{$reset_color%}%B$%b ' |
||||
else |
||||
if which rbenv &> /dev/null; then |
||||
PROMPT='%{$fg[green]%}%~%{$reset_color%} %{$fg[red]%}‹$(rbenv version | sed -e "s/ (set.*$//")› %{$reset_color%} $(git_prompt_info)%{$reset_color%}%B$%b ' |
||||
fi |
||||
fi |
||||
RPS1="${return_code}" |
||||
|
||||
ZSH_THEME_GIT_PROMPT_PREFIX="%{$fg[yellow]%}‹" |
||||
ZSH_THEME_GIT_PROMPT_SUFFIX="› %{$reset_color%}" |
@ -1,6 +0,0 @@
@@ -1,6 +0,0 @@
|
||||
# Theme with full path names and hostname |
||||
# Handy if you work on different servers all the time; |
||||
PROMPT='%{$fg[cyan]%}%n%{$reset_color%}@%{$fg[yellow]%}%M:%{$fg[green]%}%/%{$reset_color%}$(git_prompt_info) %(!.#.$) ' |
||||
|
||||
ZSH_THEME_GIT_PROMPT_PREFIX=" %{$fg[cyan]%}git:(" |
||||
ZSH_THEME_GIT_PROMPT_SUFFIX=")%{$reset_color%}" |
@ -1,6 +0,0 @@
@@ -1,6 +0,0 @@
|
||||
PROMPT='%{$fg_bold[magenta]%}%1~$(git_prompt_info) %{$fg_bold[magenta]%}%# %{$reset_color%}' |
||||
|
||||
ZSH_THEME_GIT_PROMPT_PREFIX="%{$fg_bold[yellow]%}[" |
||||
ZSH_THEME_GIT_PROMPT_SUFFIX="%{$reset_color%}" |
||||
ZSH_THEME_GIT_PROMPT_DIRTY="*]" |
||||
ZSH_THEME_GIT_PROMPT_CLEAN="]" |
@ -1,24 +0,0 @@
@@ -1,24 +0,0 @@
|
||||
# mh theme |
||||
# preview: https://cl.ly/1y2x0W0E3t2C0F29043z |
||||
|
||||
# features: |
||||
# path is autoshortened to ~30 characters |
||||
# displays git status (if applicable in current folder) |
||||
# turns username green if superuser, otherwise it is white |
||||
|
||||
# if superuser make the username green |
||||
if [ $UID -eq 0 ]; then NCOLOR="green"; else NCOLOR="white"; fi |
||||
|
||||
# prompt |
||||
PROMPT='[%{$fg[$NCOLOR]%}%B%n%b%{$reset_color%}:%{$fg[red]%}%30<...<%~%<<%{$reset_color%}]%(!.#.$) ' |
||||
RPROMPT='$(git_prompt_info)' |
||||
|
||||
# git theming |
||||
ZSH_THEME_GIT_PROMPT_PREFIX="%{$fg_bold[gray]%}(%{$fg_no_bold[yellow]%}%B" |
||||
ZSH_THEME_GIT_PROMPT_SUFFIX="%b%{$fg_bold[gray]%})%{$reset_color%} " |
||||
ZSH_THEME_GIT_PROMPT_CLEAN="" |
||||
ZSH_THEME_GIT_PROMPT_DIRTY="%{$fg_bold[red]%}✱" |
||||
|
||||
# LS colors, made with https://geoff.greer.fm/lscolors/ |
||||
export LSCOLORS="Gxfxcxdxbxegedabagacad" |
||||
export LS_COLORS='no=00:fi=00:di=01;34:ln=00;36:pi=40;33:so=01;35:do=01;35:bd=40;33;01:cd=40;33;01:or=41;33;01:ex=00;32:*.cmd=00;32:*.exe=01;32:*.com=01;32:*.bat=01;32:*.btm=01;32:*.dll=01;32:*.tar=00;31:*.tbz=00;31:*.tgz=00;31:*.rpm=00;31:*.deb=00;31:*.arj=00;31:*.taz=00;31:*.lzh=00;31:*.lzma=00;31:*.zip=00;31:*.zoo=00;31:*.z=00;31:*.Z=00;31:*.gz=00;31:*.bz2=00;31:*.tb2=00;31:*.tz2=00;31:*.tbz2=00;31:*.avi=01;35:*.bmp=01;35:*.fli=01;35:*.gif=01;35:*.jpg=01;35:*.jpeg=01;35:*.mng=01;35:*.mov=01;35:*.mpg=01;35:*.pcx=01;35:*.pbm=01;35:*.pgm=01;35:*.png=01;35:*.ppm=01;35:*.tga=01;35:*.tif=01;35:*.xbm=01;35:*.xpm=01;35:*.dl=01;35:*.gl=01;35:*.wmv=01;35:*.aiff=00;32:*.au=00;32:*.mid=00;32:*.mp3=00;32:*.ogg=00;32:*.voc=00;32:*.wav=00;32:' |
@ -1,75 +0,0 @@
@@ -1,75 +0,0 @@
|
||||
# Michele Bologna's theme |
||||
# https://www.michelebologna.net |
||||
# |
||||
# This a theme for oh-my-zsh. Features a colored prompt with: |
||||
# * username@host: [jobs] [git] workdir % |
||||
# * hostname color is based on hostname characters. When using as root, the |
||||
# prompt shows only the hostname in red color. |
||||
# * [jobs], if applicable, counts the number of suspended jobs tty |
||||
# * [git], if applicable, represents the status of your git repo (more on that |
||||
# later) |
||||
# * '%' prompt will be green if last command return value is 0, yellow otherwise. |
||||
# |
||||
# git prompt is inspired by official git contrib prompt: |
||||
# https://github.com/git/git/tree/master/contrib/completion/git-prompt.sh |
||||
# and it adds: |
||||
# * the current branch |
||||
# * '%' if there are untracked files |
||||
# * '$' if there are stashed changes |
||||
# * '*' if there are modified files |
||||
# * '+' if there are added files |
||||
# * '<' if local repo is behind remote repo |
||||
# * '>' if local repo is ahead remote repo |
||||
# * '=' if local repo is equal to remote repo (in sync) |
||||
# * '<>' if local repo is diverged |
||||
|
||||
local green="%{$fg_bold[green]%}" |
||||
local red="%{$fg_bold[red]%}" |
||||
local cyan="%{$fg_bold[cyan]%}" |
||||
local yellow="%{$fg_bold[yellow]%}" |
||||
local blue="%{$fg_bold[blue]%}" |
||||
local magenta="%{$fg_bold[magenta]%}" |
||||
local white="%{$fg_bold[white]%}" |
||||
local reset="%{$reset_color%}" |
||||
|
||||
local -a color_array |
||||
color_array=($green $red $cyan $yellow $blue $magenta $white) |
||||
|
||||
local username_normal_color=$white |
||||
local username_root_color=$red |
||||
local hostname_root_color=$red |
||||
|
||||
# calculating hostname color with hostname characters |
||||
for i in `hostname`; local hostname_normal_color=$color_array[$[((#i))%7+1]] |
||||
local -a hostname_color |
||||
hostname_color=%(!.$hostname_root_color.$hostname_normal_color) |
||||
|
||||
local current_dir_color=$blue |
||||
local username_command="%n" |
||||
local hostname_command="%m" |
||||
local current_dir="%~" |
||||
|
||||
local username_output="%(!..$username_normal_color$username_command$reset@)" |
||||
local hostname_output="$hostname_color$hostname_command$reset" |
||||
local current_dir_output="$current_dir_color$current_dir$reset" |
||||
local jobs_bg="${red}fg: %j$reset" |
||||
local last_command_output="%(?.%(!.$red.$green).$yellow)" |
||||
|
||||
ZSH_THEME_GIT_PROMPT_PREFIX="" |
||||
ZSH_THEME_GIT_PROMPT_SUFFIX="" |
||||
ZSH_THEME_GIT_PROMPT_DIRTY="" |
||||
ZSH_THEME_GIT_PROMPT_CLEAN="" |
||||
ZSH_THEME_GIT_PROMPT_UNTRACKED="$blue%%" |
||||
ZSH_THEME_GIT_PROMPT_MODIFIED="$red*" |
||||
ZSH_THEME_GIT_PROMPT_ADDED="$green+" |
||||
ZSH_THEME_GIT_PROMPT_STASHED="$blue$" |
||||
ZSH_THEME_GIT_PROMPT_EQUAL_REMOTE="$green=" |
||||
ZSH_THEME_GIT_PROMPT_AHEAD_REMOTE=">" |
||||
ZSH_THEME_GIT_PROMPT_BEHIND_REMOTE="<" |
||||
ZSH_THEME_GIT_PROMPT_DIVERGED_REMOTE="$red<>" |
||||
|
||||
PROMPT='$username_output$hostname_output:$current_dir_output%1(j. [$jobs_bg].)' |
||||
GIT_PROMPT='$(out=$(git_prompt_info)$(git_prompt_status)$(git_remote_status);if [[ -n $out ]]; then printf %s " $white($green$out$white)$reset";fi)' |
||||
PROMPT+="$GIT_PROMPT" |
||||
PROMPT+=" $last_command_output%#$reset " |
||||
RPROMPT='' |
@ -1,21 +0,0 @@
@@ -1,21 +0,0 @@
|
||||
setopt prompt_subst |
||||
|
||||
autoload -U add-zsh-hook |
||||
autoload -Uz vcs_info |
||||
|
||||
# check-for-changes can be really slow. |
||||
# you should disable it, if you work with large repositories |
||||
zstyle ':vcs_info:*:prompt:*' check-for-changes true |
||||
|
||||
add-zsh-hook precmd mikeh_precmd |
||||
|
||||
mikeh_precmd() { |
||||
vcs_info |
||||
} |
||||
|
||||
# user, host, full path, and time/date |
||||
# on two lines for easier vgrepping |
||||
# entry in a nice long thread on the Arch Linux forums: https://bbs.archlinux.org/viewtopic.php?pid=521888#p521888 |
||||
PROMPT=$'%{\e[0;34m%}%B..[%b%{\e[0m%}%{\e[1;32m%}%n%{\e[1;30m%}@%{\e[0m%}%{\e[0;36m%}%m%{\e[0;34m%}%B]%b%{\e[0m%} - %b%{\e[0;34m%}%B[%b%{\e[1;37m%}%~%{\e[0;34m%}%B]%b%{\e[0m%} - %{\e[0;34m%}%B[%b%{\e[0;33m%}'%D{"%a %b %d, %I:%M"}%b$'%{\e[0;34m%}%B]%b%{\e[0m%} |
||||
%{\e[0;34m%}%B..%B[%{\e[1;35m%}$%{\e[0;34m%}%B] <($vcs_info_msg_0_)>%{\e[0m%}%b ' |
||||
PS2=$' \e[0;34m%}%B>%{\e[0m%}%b ' |
@ -1,8 +0,0 @@
@@ -1,8 +0,0 @@
|
||||
# Yay! High voltage and arrows! |
||||
|
||||
ZSH_THEME_GIT_PROMPT_PREFIX="%{$reset_color%}%{$fg[green]%}" |
||||
ZSH_THEME_GIT_PROMPT_SUFFIX="%{$reset_color%} " |
||||
ZSH_THEME_GIT_PROMPT_DIRTY="%{$fg[yellow]%}⚡%{$reset_color%}" |
||||
ZSH_THEME_GIT_PROMPT_CLEAN="" |
||||
|
||||
PROMPT='%{$fg[cyan]%}%1~%{$reset_color%}%{$fg[red]%}|%{$reset_color%}$(git_prompt_info)%{$fg[cyan]%}⇒%{$reset_color%} ' |
@ -1,24 +0,0 @@
@@ -1,24 +0,0 @@
|
||||
ZSH_THEME_GIT_PROMPT_PREFIX="%{$reset_color%}%{$fg[white]%}[" |
||||
ZSH_THEME_GIT_PROMPT_SUFFIX="" |
||||
ZSH_THEME_GIT_PROMPT_DIRTY="%{$fg[red]%}●%{$fg[white]%}]%{$reset_color%} " |
||||
ZSH_THEME_GIT_PROMPT_CLEAN="]%{$reset_color%} " |
||||
ZSH_THEME_SVN_PROMPT_PREFIX=$ZSH_THEME_GIT_PROMPT_PREFIX |
||||
ZSH_THEME_SVN_PROMPT_SUFFIX=$ZSH_THEME_GIT_PROMPT_SUFFIX |
||||
ZSH_THEME_SVN_PROMPT_DIRTY=$ZSH_THEME_GIT_PROMPT_DIRTY |
||||
ZSH_THEME_SVN_PROMPT_CLEAN=$ZSH_THEME_GIT_PROMPT_CLEAN |
||||
ZSH_THEME_HG_PROMPT_PREFIX=$ZSH_THEME_GIT_PROMPT_PREFIX |
||||
ZSH_THEME_HG_PROMPT_SUFFIX=$ZSH_THEME_GIT_PROMPT_SUFFIX |
||||
ZSH_THEME_HG_PROMPT_DIRTY=$ZSH_THEME_GIT_PROMPT_DIRTY |
||||
ZSH_THEME_HG_PROMPT_CLEAN=$ZSH_THEME_GIT_PROMPT_CLEAN |
||||
|
||||
vcs_status() { |
||||
if [[ $(whence in_svn) != "" ]] && in_svn; then |
||||
svn_prompt_info |
||||
elif [[ $(whence in_hg) != "" ]] && in_hg; then |
||||
hg_prompt_info |
||||
else |
||||
git_prompt_info |
||||
fi |
||||
} |
||||
|
||||
PROMPT='%2~ $(vcs_status)»%b ' |
@ -1,29 +0,0 @@
@@ -1,29 +0,0 @@
|
||||
# Based on bira zsh theme with nvm, rvm and jenv support |
||||
local return_code="%(?..%{$fg[red]%}%? ↵%{$reset_color%})" |
||||
|
||||
local user_host='%{$terminfo[bold]$fg[green]%}%n@%m%{$reset_color%}' |
||||
local current_dir='%{$terminfo[bold]$fg[blue]%} %~%{$reset_color%}' |
||||
|
||||
local rvm_ruby='' |
||||
if which rvm-prompt &> /dev/null; then |
||||
rvm_ruby='%{$fg[red]%}‹$(rvm-prompt i v g)›%{$reset_color%}' |
||||
else |
||||
if which rbenv &> /dev/null; then |
||||
rvm_ruby='%{$fg[red]%}‹$(rbenv version | sed -e "s/ (set.*$//")›%{$reset_color%}' |
||||
fi |
||||
fi |
||||
|
||||
local nvm_node='' |
||||
nvm_node='%{$fg[green]%}‹node-$(nvm_prompt_info)›%{$reset_color%}' |
||||
|
||||
local jenv_java='' |
||||
jenv_java='%{$fg[blue]%}‹$(jenv_prompt_info)›%{$reset_color%}' |
||||
|
||||
local git_branch='$(git_prompt_info)%{$reset_color%}' |
||||
|
||||
PROMPT="╭─${user_host} ${current_dir} ${nvm_node} ${rvm_ruby} ${jenv_java} ${git_branch} |
||||
╰─%B$%b " |
||||
RPS1="${return_code}" |
||||
|
||||
ZSH_THEME_GIT_PROMPT_PREFIX="%{$fg[yellow]%}(" |
||||
ZSH_THEME_GIT_PROMPT_SUFFIX=") %{$reset_color%}" |
@ -1,65 +0,0 @@
@@ -1,65 +0,0 @@
|
||||
function my_git_prompt() { |
||||
tester=$(git rev-parse --git-dir 2> /dev/null) || return |
||||
|
||||
INDEX=$(git status --porcelain 2> /dev/null) |
||||
STATUS="" |
||||
|
||||
# is branch ahead? |
||||
if $(echo "$(git log origin/$(git_current_branch)..HEAD 2> /dev/null)" | grep '^commit' &> /dev/null); then |
||||
STATUS="$STATUS$ZSH_THEME_GIT_PROMPT_AHEAD" |
||||
fi |
||||
|
||||
# is branch behind? |
||||
if $(echo "$(git log HEAD..origin/$(git_current_branch) 2> /dev/null)" | grep '^commit' &> /dev/null); then |
||||
STATUS="$STATUS$ZSH_THEME_GIT_PROMPT_BEHIND" |
||||
fi |
||||
|
||||
# is anything staged? |
||||
if $(echo "$INDEX" | command grep -E -e '^(D[ M]|[MARC][ MD]) ' &> /dev/null); then |
||||
STATUS="$STATUS$ZSH_THEME_GIT_PROMPT_STAGED" |
||||
fi |
||||
|
||||
# is anything unstaged? |
||||
if $(echo "$INDEX" | command grep -E -e '^[ MARC][MD] ' &> /dev/null); then |
||||
STATUS="$STATUS$ZSH_THEME_GIT_PROMPT_UNSTAGED" |
||||
fi |
||||
|
||||
# is anything untracked? |
||||
if $(echo "$INDEX" | grep '^?? ' &> /dev/null); then |
||||
STATUS="$STATUS$ZSH_THEME_GIT_PROMPT_UNTRACKED" |
||||
fi |
||||
|
||||
# is anything unmerged? |
||||
if $(echo "$INDEX" | command grep -E -e '^(A[AU]|D[DU]|U[ADU]) ' &> /dev/null); then |
||||
STATUS="$STATUS$ZSH_THEME_GIT_PROMPT_UNMERGED" |
||||
fi |
||||
|
||||
if [[ -n $STATUS ]]; then |
||||
STATUS=" $STATUS" |
||||
fi |
||||
|
||||
echo "$ZSH_THEME_GIT_PROMPT_PREFIX$(my_current_branch)$STATUS$ZSH_THEME_GIT_PROMPT_SUFFIX" |
||||
} |
||||
|
||||
function my_current_branch() { |
||||
echo $(git_current_branch || echo "(no branch)") |
||||
} |
||||
|
||||
function ssh_connection() { |
||||
if [[ -n $SSH_CONNECTION ]]; then |
||||
echo "%{$fg_bold[red]%}(ssh) " |
||||
fi |
||||
} |
||||
|
||||
local ret_status="%(?:%{$fg_bold[green]%}:%{$fg_bold[red]%})%?%{$reset_color%}" |
||||
PROMPT=$'\n$(ssh_connection)%{$fg_bold[green]%}%n@%m%{$reset_color%}$(my_git_prompt) : %~\n[${ret_status}] %# ' |
||||
|
||||
ZSH_THEME_PROMPT_RETURNCODE_PREFIX="%{$fg_bold[red]%}" |
||||
ZSH_THEME_GIT_PROMPT_PREFIX=" $fg[white]‹ %{$fg_bold[yellow]%}" |
||||
ZSH_THEME_GIT_PROMPT_AHEAD="%{$fg_bold[magenta]%}↑" |
||||
ZSH_THEME_GIT_PROMPT_BEHIND="%{$fg_bold[green]%}↓" |
||||
ZSH_THEME_GIT_PROMPT_STAGED="%{$fg_bold[green]%}●" |
||||
ZSH_THEME_GIT_PROMPT_UNSTAGED="%{$fg_bold[red]%}●" |
||||
ZSH_THEME_GIT_PROMPT_UNTRACKED="%{$fg_bold[white]%}●" |
||||
ZSH_THEME_GIT_PROMPT_UNMERGED="%{$fg_bold[red]%}✕" |
||||
ZSH_THEME_GIT_PROMPT_SUFFIX=" $fg_bold[white]›%{$reset_color%}" |
@ -1,7 +0,0 @@
@@ -1,7 +0,0 @@
|
||||
PROMPT='%{$fg_bold[red]%}%m%{$reset_color%}:%{$fg[cyan]%}%c%{$reset_color%}:%# ' |
||||
RPROMPT='%{$fg_bold[green]%}$(git_prompt_info)%{$reset_color%}% ' |
||||
|
||||
ZSH_THEME_GIT_PROMPT_PREFIX="<%{$fg[red]%}" |
||||
ZSH_THEME_GIT_PROMPT_SUFFIX="%{$reset_color%}" |
||||
ZSH_THEME_GIT_PROMPT_DIRTY="%{$fg[green]%} %{$fg[yellow]%}✗%{$fg[green]%}>%{$reset_color%}" |
||||
ZSH_THEME_GIT_PROMPT_CLEAN="%{$fg[green]%}>" |
@ -1,14 +0,0 @@
@@ -1,14 +0,0 @@
|
||||
local return_code="%(?..%{$fg[red]%}%? ↵%{$reset_color%})" |
||||
local user_host='%{$terminfo[bold]$fg[green]%}%n@%m%{$reset_color%}' |
||||
local current_dir='%{$terminfo[bold]$fg[blue]%}%~%{$reset_color%}' |
||||
local rvm_ruby='%{$fg[red]%}$(rvm_prompt_info || rbenv_prompt_info)%{$reset_color%}' |
||||
local git_branch='%{$fg[blue]%}$(git_prompt_info)%{$reset_color%}' |
||||
|
||||
PROMPT="${user_host}:${current_dir} ${rvm_ruby} |
||||
${git_branch} %B$%b " |
||||
RPS1="${return_code}" |
||||
|
||||
ZSH_THEME_GIT_PROMPT_PREFIX="" |
||||
ZSH_THEME_GIT_PROMPT_SUFFIX="" |
||||
ZSH_THEME_GIT_PROMPT_DIRTY=" %{$fg[red]%}✗%{$reset_color%}" |
||||
ZSH_THEME_GIT_PROMPT_CLEAN=" %{$fg[green]%}✔%{$reset_color%}" |
@ -1,33 +0,0 @@
@@ -1,33 +0,0 @@
|
||||
#!/usr/bin/env zsh |
||||
#local return_code="%(?..%{$fg[red]%}%? ↵%{$reset_color%})" |
||||
|
||||
setopt promptsubst |
||||
|
||||
autoload -U add-zsh-hook |
||||
|
||||
PROMPT_SUCCESS_COLOR=$FG[117] |
||||
PROMPT_FAILURE_COLOR=$FG[124] |
||||
PROMPT_VCS_INFO_COLOR=$FG[242] |
||||
PROMPT_PROMPT=$FG[077] |
||||
GIT_DIRTY_COLOR=$FG[133] |
||||
GIT_CLEAN_COLOR=$FG[118] |
||||
GIT_PROMPT_INFO=$FG[012] |
||||
|
||||
PROMPT='%{$PROMPT_SUCCESS_COLOR%}%~%{$reset_color%}%{$GIT_PROMPT_INFO%}$(git_prompt_info)$(virtualenv_prompt_info)%{$GIT_DIRTY_COLOR%}$(git_prompt_status) %{$reset_color%}%{$PROMPT_PROMPT%}ᐅ%{$reset_color%} ' |
||||
|
||||
#RPS1="${return_code}" |
||||
|
||||
ZSH_THEME_GIT_PROMPT_PREFIX=" (" |
||||
ZSH_THEME_GIT_PROMPT_SUFFIX="%{$GIT_PROMPT_INFO%})" |
||||
ZSH_THEME_GIT_PROMPT_DIRTY=" %{$GIT_DIRTY_COLOR%}✘" |
||||
ZSH_THEME_GIT_PROMPT_CLEAN=" %{$GIT_CLEAN_COLOR%}✔" |
||||
|
||||
ZSH_THEME_GIT_PROMPT_ADDED="%{$FG[082]%}✚%{$reset_color%}" |
||||
ZSH_THEME_GIT_PROMPT_MODIFIED="%{$FG[166]%}✹%{$reset_color%}" |
||||
ZSH_THEME_GIT_PROMPT_DELETED="%{$FG[160]%}✖%{$reset_color%}" |
||||
ZSH_THEME_GIT_PROMPT_RENAMED="%{$FG[220]%}➜%{$reset_color%}" |
||||
ZSH_THEME_GIT_PROMPT_UNMERGED="%{$FG[082]%}═%{$reset_color%}" |
||||
ZSH_THEME_GIT_PROMPT_UNTRACKED="%{$FG[190]%}✭%{$reset_color%}" |
||||
|
||||
ZSH_THEME_VIRTUALENV_PREFIX=" [" |
||||
ZSH_THEME_VIRTUALENV_SUFFIX="]" |
@ -1,7 +0,0 @@
@@ -1,7 +0,0 @@
|
||||
PROMPT='%F{green}%2c%F{blue} [%f ' |
||||
RPROMPT='$(git_prompt_info) %F{blue}] %F{green}%D{%L:%M} %F{yellow}%D{%p}%f' |
||||
|
||||
ZSH_THEME_GIT_PROMPT_PREFIX="%F{yellow}" |
||||
ZSH_THEME_GIT_PROMPT_SUFFIX="%f" |
||||
ZSH_THEME_GIT_PROMPT_DIRTY=" %F{red}*%f" |
||||
ZSH_THEME_GIT_PROMPT_CLEAN="" |
@ -1,21 +0,0 @@
@@ -1,21 +0,0 @@
|
||||
# Based on robbyrussell's theme, with host and rvm indicators. Example: |
||||
# @host ➜ currentdir rvm:(rubyversion@gemset) git:(branchname) |
||||
|
||||
# Get the current ruby version in use with RVM: |
||||
if [ -e ~/.rvm/bin/rvm-prompt ]; then |
||||
RUBY_PROMPT_="%{$fg_bold[blue]%}rvm:(%{$fg[green]%}\$(~/.rvm/bin/rvm-prompt s i v g)%{$fg_bold[blue]%})%{$reset_color%} " |
||||
else |
||||
if which rbenv &> /dev/null; then |
||||
RUBY_PROMPT_="%{$fg_bold[blue]%}rbenv:(%{$fg[green]%}\$(rbenv version | sed -e 's/ (set.*$//')%{$fg_bold[blue]%})%{$reset_color%} " |
||||
fi |
||||
fi |
||||
|
||||
# Get the host name (first 4 chars) |
||||
HOST_PROMPT_="%{$fg_bold[red]%}@$HOST ➜ %{$fg_bold[cyan]%}%c " |
||||
GIT_PROMPT="%{$fg_bold[blue]%}\$(git_prompt_info)%{$fg_bold[blue]%} % %{$reset_color%}" |
||||
PROMPT="$HOST_PROMPT_$RUBY_PROMPT_$GIT_PROMPT" |
||||
|
||||
ZSH_THEME_GIT_PROMPT_PREFIX="git:(%{$fg[red]%}" |
||||
ZSH_THEME_GIT_PROMPT_SUFFIX="%{$reset_color%}" |
||||
ZSH_THEME_GIT_PROMPT_DIRTY="%{$fg[blue]%}) %{$fg[yellow]%}✗%{$reset_color%}" |
||||
ZSH_THEME_GIT_PROMPT_CLEAN="%{$fg[blue]%})" |
@ -1,43 +0,0 @@
@@ -1,43 +0,0 @@
|
||||
#!/usr/bin/env zsh |
||||
# ------------------------------------------------------------------------------ |
||||
# Prompt for the Zsh shell: |
||||
# * One line. |
||||
# * VCS info on the right prompt. |
||||
# * Only shows the path on the left prompt by default. |
||||
# * Crops the path to a defined length and only shows the path relative to |
||||
# the current VCS repository root. |
||||
# * Wears a different color wether the last command succeeded/failed. |
||||
# * Shows user@hostname if connected through SSH. |
||||
# * Shows if logged in as root or not. |
||||
# ------------------------------------------------------------------------------ |
||||
|
||||
# Customizable parameters. |
||||
PROMPT_PATH_MAX_LENGTH=30 |
||||
PROMPT_DEFAULT_END=❯ |
||||
PROMPT_ROOT_END=❯❯❯ |
||||
PROMPT_SUCCESS_COLOR=$FG[071] |
||||
PROMPT_FAILURE_COLOR=$FG[124] |
||||
PROMPT_VCS_INFO_COLOR=$FG[242] |
||||
|
||||
# Set required options. |
||||
setopt promptsubst |
||||
|
||||
# Load required modules. |
||||
autoload -U add-zsh-hook |
||||
autoload -Uz vcs_info |
||||
|
||||
# Add hook for calling vcs_info before each command. |
||||
add-zsh-hook precmd vcs_info |
||||
|
||||
# Set vcs_info parameters. |
||||
zstyle ':vcs_info:*' enable hg bzr git |
||||
zstyle ':vcs_info:*:*' check-for-changes true # Can be slow on big repos. |
||||
zstyle ':vcs_info:*:*' unstagedstr '!' |
||||
zstyle ':vcs_info:*:*' stagedstr '+' |
||||
zstyle ':vcs_info:*:*' actionformats "%S" "%r/%s/%b %u%c (%a)" |
||||
zstyle ':vcs_info:*:*' formats "%S" "%r/%s/%b %u%c" |
||||
zstyle ':vcs_info:*:*' nvcsformats "%~" "" |
||||
|
||||
# Define prompts. |
||||
PROMPT="%(0?.%{$PROMPT_SUCCESS_COLOR%}.%{$PROMPT_FAILURE_COLOR%})${SSH_TTY:+[%n@%m]}%{$FX[bold]%}%$PROMPT_PATH_MAX_LENGTH<..<"'${vcs_info_msg_0_%%.}'"%<<%(!.$PROMPT_ROOT_END.$PROMPT_DEFAULT_END)%{$FX[no-bold]%}%{$FX[reset]%} " |
||||
RPROMPT="%{$PROMPT_VCS_INFO_COLOR%}"'$vcs_info_msg_1_'"%{$FX[reset]%}" |
@ -1,4 +0,0 @@
@@ -1,4 +0,0 @@
|
||||
PROMPT='%{$fg[yellow]%}λ %m %{$fg[green]%}%c %{$fg[yellow]%}→ $(git_prompt_info)%{$reset_color%}' |
||||
|
||||
ZSH_THEME_GIT_PROMPT_PREFIX="λ %{$fg[blue]%}git %{$fg[red]%}" |
||||
ZSH_THEME_GIT_PROMPT_SUFFIX="%{$fg[yellow]%} → %{$reset_color%}" |
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in new issue