diff options
author | Marc Cornellà <hello@mcornella.com> | 2021-11-09 10:25:23 +0100 |
---|---|---|
committer | Marc Cornellà <hello@mcornella.com> | 2021-11-09 10:25:23 +0100 |
commit | 3dc66bd3676a564e3864fb5ccf5641c65fd42c6f (patch) | |
tree | 1442f65e07774defa917f3fbdb074f16995704b7 /themes/emotty.zsh-theme | |
parent | 4a74349635cf30d305766b459c7cc3246831676e (diff) | |
download | zsh-3dc66bd3676a564e3864fb5ccf5641c65fd42c6f.tar.gz zsh-3dc66bd3676a564e3864fb5ccf5641c65fd42c6f.tar.bz2 zsh-3dc66bd3676a564e3864fb5ccf5641c65fd42c6f.zip |
fix(emotty): fix glyphs output width in emotty theme
Diffstat (limited to 'themes/emotty.zsh-theme')
-rw-r--r-- | themes/emotty.zsh-theme | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/themes/emotty.zsh-theme b/themes/emotty.zsh-theme index 13adad78d..044b317e8 100644 --- a/themes/emotty.zsh-theme +++ b/themes/emotty.zsh-theme @@ -51,9 +51,9 @@ root_prompt="$emoji[skull]" warn_prompt="$emoji[collision_symbol]" vcs_unstaged_glyph="%{$emoji[circled_latin_capital_letter_m]$emoji2[emoji_style] %2G%}" -vcs_staged_glyph="%{$emoji[high_voltage_sign] %2G%}" -vcs_branch_glyph=$(print -P $'\Ue0a0') # -vcs_action_glyph=$(print -P $'\U276f') # ❯ +vcs_staged_glyph="%{$emoji[high_voltage_sign]%2G%}" +vcs_branch_glyph=$'\Ue0a0' # +vcs_action_glyph=$'\U276f' # ❯ red="$FG[001]" yellow="$FG[003]" |