diff options
author | Dominik Ritter <dritter03@googlemail.com> | 2015-08-05 01:00:29 +0300 |
---|---|---|
committer | Dominik Ritter <dritter03@googlemail.com> | 2015-08-05 01:00:29 +0300 |
commit | 33dba0f19fff80baeebf723bd828a714d43b7f24 (patch) | |
tree | fac52cc5adabd59084668b4df702c058102c4134 /powerlevel9k.zsh-theme | |
parent | b1dba08c9394aef7c99102b614d2ca01093ba981 (diff) |
Define multiline icons as escape sequence.
Diffstat (limited to 'powerlevel9k.zsh-theme')
-rw-r--r-- | powerlevel9k.zsh-theme | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/powerlevel9k.zsh-theme b/powerlevel9k.zsh-theme index a31695b2..dadd1d1a 100644 --- a/powerlevel9k.zsh-theme +++ b/powerlevel9k.zsh-theme @@ -68,8 +68,8 @@ case $POWERLEVEL9K_MODE in OK_ICON "\U2713" # ✓ FAIL_ICON "\U2718" # ✘ SYMFONY_ICON "SF" - MULTILINE_FIRST_PROMPT_PREFIX "╭─" - MULTILINE_SECOND_PROMPT_PREFIX "╰─ " + MULTILINE_FIRST_PROMPT_PREFIX $'\U256D'$'\U2500' + MULTILINE_SECOND_PROMPT_PREFIX $'\U2570'$'\U2500 ' APPLE_ICON $'\UF8FF' # FREEBSD_ICON $'\U1F608 ' # 😈 LINUX_ICON $'\U1F427 ' # 🐧 @@ -107,8 +107,8 @@ case $POWERLEVEL9K_MODE in OK_ICON "\U2713" # ✓ FAIL_ICON "\U2718" # ✘ SYMFONY_ICON "SF" - MULTILINE_FIRST_PROMPT_PREFIX "╭─" - MULTILINE_SECOND_PROMPT_PREFIX "╰─ " + MULTILINE_FIRST_PROMPT_PREFIX $'\U256D'$'\U2500' + MULTILINE_SECOND_PROMPT_PREFIX $'\U2570'$'\U2500 ' APPLE_ICON 'OSX' FREEBSD_ICON 'BSD' LINUX_ICON 'Lx' |