Skip to content

Instantly share code, notes, and snippets.

@lesterlo
Last active November 27, 2019 10:12
Show Gist options
  • Save lesterlo/2b32ea8648748cf97073d0478db00dfc to your computer and use it in GitHub Desktop.
Save lesterlo/2b32ea8648748cf97073d0478db00dfc to your computer and use it in GitHub Desktop.
My Simple and clean oh_my_zsh theme
#prompt setting
PROMPT="%{$fg_bold[yellow]%}%c " #show the current folder name
PROMPT+="%(?:%{$fg_bold[green]%}>:%{$fg_bold[red]%}>) %{$reset_color%}"
RPROMPT=' $(git_prompt_info)'
#git setting
ZSH_THEME_GIT_PROMPT_PREFIX="%{$fg[cyan]%}["
ZSH_THEME_GIT_PROMPT_SUFFIX="%{$reset_color%} "
ZSH_THEME_GIT_PROMPT_DIRTY=" %{$fg_bold[red]%}*%{$reset_color%}%{$fg[cyan]%}]"
ZSH_THEME_GIT_PROMPT_CLEAN="%{$fg[cyan]%}]"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment