mirror of
https://github.com/romkatv/powerlevel10k.git
synced 2024-12-18 05:40:07 +00:00
Fix the branch icon and whitespaces in the vcs segment.
This commit is contained in:
parent
772c9ab85d
commit
0226f871f6
2 changed files with 17 additions and 17 deletions
|
@ -288,11 +288,11 @@ set `POWERLEVEL9K_CHANGESET_HASH_LENGTH` to any value you want.
|
|||
# just show the 6 first characters of changeset
|
||||
POWERLEVEL9K_CHANGESET_HASH_LENGTH=6
|
||||
|
||||
You can also enable an additional branch icon in your prompt by setting
|
||||
`POWERLEVEL9K_SHOW_BRANCH_ICON` to `true`:
|
||||
You can also disable the branch icon in your prompt by setting
|
||||
`POWERLEVEL9K_HIDE_BRANCH_ICON` to `true`:
|
||||
|
||||
# Show an icon before the branch name
|
||||
POWERLEVEL9K_SHOW_BRANCH_ICON=true
|
||||
# Hide the branch icon
|
||||
POWERLEVEL9K_HIDE_BRANCH_ICON=true
|
||||
|
||||
##### Symbols
|
||||
|
||||
|
|
|
@ -158,14 +158,14 @@ case $POWERLEVEL9K_MODE in
|
|||
VCS_TAG_ICON=''
|
||||
VCS_BOOKMARK_ICON="\u263F" # ☿
|
||||
VCS_COMMIT_ICON=''
|
||||
VCS_BRANCH_ICON='@'
|
||||
VCS_BRANCH_ICON="\uE0A0 " #
|
||||
VCS_REMOTE_BRANCH_ICON="\u2192" # →
|
||||
VCS_GIT_ICON="\uE0A0" #
|
||||
VCS_HG_ICON="\uE0A0" #
|
||||
VCS_GIT_ICON=""
|
||||
VCS_HG_ICON=""
|
||||
;;
|
||||
esac
|
||||
|
||||
if [[ "$POWERLEVEL9K_SHOW_BRANCH_ICON" != true ]]; then
|
||||
if [[ "$POWERLEVEL9K_HIDE_BRANCH_ICON" == true ]]; then
|
||||
VCS_BRANCH_ICON=''
|
||||
fi
|
||||
|
||||
|
|
Loading…
Reference in a new issue