Skip to content

Instantly share code, notes, and snippets.

@danielwrobert
Last active August 24, 2022 17:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save danielwrobert/050927d2ea063c3ad2e81e50156e3393 to your computer and use it in GitHub Desktop.
Save danielwrobert/050927d2ea063c3ad2e81e50156e3393 to your computer and use it in GitHub Desktop.
My Oh My Zsh prompt theme.
# Name in folder (github)
# Conditionally indicate if in github repo. Time in 24-hour format is on right.
function collapse_pwd {
echo $(pwd | sed -e "s,^$HOME,~,")
}
function prompt_char {
echo -n "%{$fg_bold[red]%}➜%{$reset_color%} "
}
PROMPT='
%{$fg[magenta]%}%n%{$reset_color%} in %{$fg_bold[green]%}$(collapse_pwd)%{$reset_color%}$(git_prompt_info)
$(prompt_char) '
RPROMPT='%{$fg_bold[magenta]%}%T%{$reset_color%}' # Comment this out if you don't want the prompt time on the right.
ZSH_THEME_GIT_PROMPT_PREFIX=" on %{$fg_bold[blue]%}"
ZSH_THEME_GIT_PROMPT_SUFFIX="%{$reset_color%}"
ZSH_THEME_GIT_PROMPT_DIRTY=" %{$fg[red]%}✗ %{$reset_color%}"
ZSH_THEME_GIT_PROMPT_CLEAN=" %{$fg[red]%}✔ %{$reset_color%}"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment