diff options
author | Christopher Harrison <github@acc.xoph.co> | 2014-11-24 09:56:47 +0000 |
---|---|---|
committer | Christopher Harrison <github@acc.xoph.co> | 2014-11-24 09:56:47 +0000 |
commit | 663d43241cd890c2fa78040a612c6d424674c5f9 (patch) | |
tree | c8331d9af917129f35966ce84674dfae1dfbe123 /themes/minimal.zsh-theme | |
parent | 0222e774978232c03795b0e858d105aba6ed8123 (diff) | |
download | zsh-663d43241cd890c2fa78040a612c6d424674c5f9.tar.gz zsh-663d43241cd890c2fa78040a612c6d424674c5f9.tar.bz2 zsh-663d43241cd890c2fa78040a612c6d424674c5f9.zip |
Minor cosmetic fix to minimal theme
Set the closing square-brace's FG colour to white, to match the opening brace, when the repo directory is dirty.
Diffstat (limited to 'themes/minimal.zsh-theme')
-rw-r--r-- | themes/minimal.zsh-theme | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/themes/minimal.zsh-theme b/themes/minimal.zsh-theme index a2a16031f..fbd620225 100644 --- a/themes/minimal.zsh-theme +++ b/themes/minimal.zsh-theme @@ -1,6 +1,6 @@ ZSH_THEME_GIT_PROMPT_PREFIX="%{$reset_color%}%{$fg[white]%}[" ZSH_THEME_GIT_PROMPT_SUFFIX="" -ZSH_THEME_GIT_PROMPT_DIRTY="%{$fg[red]%}●%{$reset_color%}]%{$reset_color%} " +ZSH_THEME_GIT_PROMPT_DIRTY="%{$fg[red]%}●%{$fg[white]%}]%{$reset_color%} " ZSH_THEME_GIT_PROMPT_CLEAN="]%{$reset_color%} " ZSH_THEME_SVN_PROMPT_PREFIX=$ZSH_THEME_GIT_PROMPT_PREFIX ZSH_THEME_SVN_PROMPT_SUFFIX=$ZSH_THEME_GIT_PROMPT_SUFFIX @@ -15,4 +15,4 @@ vcs_status() { fi } -PROMPT='%2~ $(vcs_status)»%b '
\ No newline at end of file +PROMPT='%2~ $(vcs_status)»%b ' |