Created
September 24, 2013 10:23
-
-
Save vipickering/6682896 to your computer and use it in GitHub Desktop.
Terminal: Zsh Theme Setup
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function git_prompt_info() { | |
ref=$(git symbolic-ref HEAD 2> /dev/null) || return | |
echo "$(parse_git_dirty)$ZSH_THEME_GIT_PROMPT_PREFIX$(current_branch)$ZSH_THEME_GIT_PROMPT_SUFFIX" | |
} | |
function get_pwd() { | |
print -D $PWD | |
} | |
function put_spacing() { | |
local git=$(git_prompt_info) | |
if [ ${#git} != 0 ]; then | |
((git=${#git} - 10)) | |
else | |
git=0 | |
fi | |
local termwidth | |
(( termwidth = ${COLUMNS} - 3 - ${#HOST} - ${#$(get_pwd)} - ${bat} - ${git} )) | |
local spacing="" | |
for i in {1..$termwidth}; do | |
spacing="${spacing} " | |
done | |
echo $spacing | |
} | |
function precmd() { | |
print -rP ' | |
$fg[cyan]%m: $fg[yellow]$(get_pwd)$(put_spacing)$(git_prompt_info)' | |
} | |
PROMPT='%{$reset_color%} ' | |
ZSH_THEME_GIT_PROMPT_PREFIX="[git:" | |
ZSH_THEME_GIT_PROMPT_SUFFIX="]$reset_color" | |
ZSH_THEME_GIT_PROMPT_DIRTY="$fg[red]+" | |
ZSH_THEME_GIT_PROMPT_CLEAN="$fg[green]" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment