diff options
author | Dominik Ritter <dritter03@googlemail.com> | 2015-09-04 12:31:34 +0300 |
---|---|---|
committer | Dominik Ritter <dritter03@googlemail.com> | 2015-09-04 12:31:34 +0300 |
commit | b5e5ac98f9f3c89237f78c0035e56a1ca2dd0a65 (patch) | |
tree | 07e3f3394fe08d32a3850d982657f427b24d82be | |
parent | 6e4d24f50da4bacdaa56afb89b16472d6521697f (diff) |
Whitespaces should belong to the Icon as they form an entity. Therefore the home-icon in the awesome-patched mode should define its whitespace, so that in normal mode no extra whitespace is shown.
-rw-r--r-- | powerlevel9k.zsh-theme | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/powerlevel9k.zsh-theme b/powerlevel9k.zsh-theme index 974273e7..6de1191e 100644 --- a/powerlevel9k.zsh-theme +++ b/powerlevel9k.zsh-theme @@ -90,7 +90,7 @@ case $POWERLEVEL9K_MODE in FREEBSD_ICON $'\U1F608 ' # 😈 LINUX_ICON $'\U1F427 ' # 🐧 SUNOS_ICON $'\U1F31E ' # 🌞 - HOME_ICON $'\UE12C' # + HOME_ICON $'\UE12C ' # VCS_UNTRACKED_ICON "\UE16C" # VCS_UNSTAGED_ICON "\UE17C" # VCS_STAGED_ICON "\UE168" # @@ -504,7 +504,7 @@ prompt_dir() { fi - $1_prompt_segment "$0" "blue" "$DEFAULT_COLOR" "$(print_icon 'HOME_ICON') $current_path" + $1_prompt_segment "$0" "blue" "$DEFAULT_COLOR" "$(print_icon 'HOME_ICON')$current_path" } # Command number (in local history) |