Last active
October 31, 2018 00:55
-
-
Save rossta/bce62f5722fc1dc8f38829b2fee78488 to your computer and use it in GitHub Desktop.
My ZSH theme
This file contains hidden or 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
PROMPT_PREFIX="%{$fg[blue]%}[%{$reset_color%}" | |
PROMPT_SUFFIX="$fg[blue]%}]%{$reset_color%}" | |
HOST_PROMPT="%{$fg_bold[green]%}%n@%m" | |
DATE_PROMPT="$PROMPT_PREFIX%{$fg[red]%}%D{%I:%M:%S}$PROMPT_SUFFIX" | |
PWD_PROMPT="$PROMPT_PREFIX%{$fg[white]%}%~$PROMPT_SUFFIX" | |
LEADER_PROMPT="%{$fg_bold[blue]%}\$%{$reset_color%}" | |
PROMPT=$'$HOST_PROMPT $DATE_PROMPT$PWD_PROMPT$RUBY_PROMPT$(git_prompt_info)\ | |
$LEADER_PROMPT ' | |
ZSH_THEME_GIT_PROMPT_PREFIX="$PROMPT_PREFIX$fg[green]%}" | |
ZSH_THEME_GIT_PROMPT_SUFFIX="$PROMPT_SUFFIX" | |
ZSH_THEME_GIT_PROMPT_DIRTY=" %{$fg[red]%}*%{$fg[blue]%}" | |
ZSH_THEME_GIT_PROMPT_CLEAN="" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment