Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

New theme: ion #881

Closed
wants to merge 2 commits into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
41 changes: 41 additions & 0 deletions themes/ion.zsh-theme
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
typeset -gF ohmyzsh_ion_starttime
# zsh bug or PEBKAC? The 1 refers to the float precision but zsh complains
# about an invalid integer base. See typeset_setbase in
# http://zsh.git.sourceforge.net/git/gitweb.cgi?p=zsh/zsh;a=blob;f=Src/builtin.c
typeset -gF1 ohmyzsh_ion_time 2>/dev/null

ohmyzsh_ion_preexec() {
typeset -gF SECONDS
ohmyzsh_ion_starttime="$SECONDS"
}

ohmyzsh_ion_precmd() {
typeset -gF SECONDS
ohmyzsh_ion_time="$(($SECONDS-$ohmyzsh_ion_starttime))"
}

autoload -U add-zsh-hook
add-zsh-hook preexec ohmyzsh_ion_preexec
add-zsh-hook precmd ohmyzsh_ion_precmd

local color_error="$fg_bold[red]"
local color_info="$fg_bold[black]"
local color_user="$fg_bold[blue]"
local color_root="$fg_bold[red]"

local newline=$'\n'

local p_error="%(?..%{$color_error%}%?%{$reset_color%} )"
local p_fmt_a="%{$color_info%}"
local p_cmdtime="\${ohmyzsh_ion_time}s "
local p_time="%* "
local p_screen="\${STY:+screen }"
local p_tmux="\${TMUX:+tmux }"
local p_user="%n "
local p_host="%m "
local p_pwd="%~ "
local p_git="\$(git_prompt_info)"
local p_fmt_b="%{$reset_color%}$newline"
local p_prompt="%{%(#.$color_root.$color_user)%}%#%{$reset_color%} "

PROMPT="${p_error}${p_fmt_a}${p_cmdtime}${p_time}${p_screen}${p_tmux}${p_user}${p_host}${p_pwd}${p_git}${p_fmt_b}${p_prompt}"