Skip to content

Instantly share code, notes, and snippets.

@roddds
Last active September 4, 2020 20:53
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save roddds/5316696 to your computer and use it in GitHub Desktop.
Save roddds/5316696 to your computer and use it in GitHub Desktop.
my zsh theme
# Fino theme by roddds
# Use with a dark background and 256-color terminal!
# You can set your computer name in the ~/.box-name file if you want.
# Tested in Linux Mint
# Borrowing shamelessly from these oh-my-zsh themes:
# bira
# robbyrussell
# fino
#
# Also borrowing from http://stevelosh.com/blog/2010/02/my-extravagant-zsh-prompt/
# to make the virtualenv variable work properly on ubuntu/mint,
# add the line `source $ZSH/oh-my-zsh.sh` to the files:
# $WORKON_HOME/postactivate
# $WORKON_HOME/postactivate
function virtualenv_info {
[ $VIRTUAL_ENV ] && echo '('`basename $VIRTUAL_ENV`') '
}
function prompt_char {
# git branch >/dev/null 2>/dev/null && echo '±' && return #WTF does this do
echo '○'
}
function box_name {
[ -f ~/.box-name ] && cat ~/.box-name || hostname -s
}
alias wip="git commit -nam 'wip'"
alias undo="git reset --soft HEAD^1"
function is_wip {
if [[ "$(git log --pretty=format:"%s" -n 1 2>/dev/null)" == "wip" ]]; then
echo "(wip)"
fi
}
local current_dir='${PWD/#$HOME/~}'
local git_info='$(git_prompt_info)'
prompt() {
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]%}${current_dir}%{$reset_color%} ${git_info} $(is_wip)
╰─$(virtualenv_info)$(prompt_char) "
}
precmd_functions+=(prompt)
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]%}✓"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment