diff options
author | Keita Urashima <ursm@ursm.jp> | 2021-05-28 18:14:58 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-28 11:14:58 +0200 |
commit | 059ee71fc812f104bd8ac3dae2f5f01a8d3f032a (patch) | |
tree | 0a17d39ff347a4eb65a6147f6f4c238b3ab8595c /themes | |
parent | 308b2314f846fba1c0e6e4a64efc95feaa304a59 (diff) | |
download | zsh-059ee71fc812f104bd8ac3dae2f5f01a8d3f032a.tar.gz zsh-059ee71fc812f104bd8ac3dae2f5f01a8d3f032a.tar.bz2 zsh-059ee71fc812f104bd8ac3dae2f5f01a8d3f032a.zip |
fix(gentoo): fix the color of the prompt symbol (#9885)
This commit fixes an issue where the prompt symbol is white when vcs_info is displayed in the gentoo theme.
Diffstat (limited to 'themes')
-rw-r--r-- | themes/gentoo.zsh-theme | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/themes/gentoo.zsh-theme b/themes/gentoo.zsh-theme index e18bce890..7ac461036 100644 --- a/themes/gentoo.zsh-theme +++ b/themes/gentoo.zsh-theme @@ -25,4 +25,4 @@ gentoo_precmd() { autoload -U add-zsh-hook add-zsh-hook precmd gentoo_precmd -PROMPT='%(!.%B%F{red}.%B%F{green}%n@)%m %F{blue}%(!.%1~.%~) ${vcs_info_msg_0_}%(!.#.$)%k%b%f ' +PROMPT='%(!.%B%F{red}.%B%F{green}%n@)%m %F{blue}%(!.%1~.%~) ${vcs_info_msg_0_}%F{blue}%(!.#.$)%k%b%f ' |