diff options
author | Ben Hilburn <bhilburn@gmail.com> | 2017-05-28 04:22:20 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-05-28 04:22:20 +0300 |
commit | 4be16020b7cd7241b75c23db9f5bd3d4fce84686 (patch) | |
tree | bf2e53eedf5208b2955e006bd7c770630d1c8ce4 /functions/icons.zsh | |
parent | b63bf001131a3fd295365f300d508ff2401fa9a7 (diff) | |
parent | f81ecc11f6f81b10070abeb70dcedb8035f55056 (diff) |
Merge pull request #535 from zikes/go_icon
Add Gopher icon to go_version segment
Diffstat (limited to 'functions/icons.zsh')
-rw-r--r-- | functions/icons.zsh | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/functions/icons.zsh b/functions/icons.zsh index c2cdcba5..5e719be1 100644 --- a/functions/icons.zsh +++ b/functions/icons.zsh @@ -78,6 +78,7 @@ case $POWERLEVEL9K_MODE in RUST_ICON '' PYTHON_ICON $'\U1F40D' # 🐍 SWIFT_ICON '' + GO_ICON '' PUBLIC_IP_ICON '' LOCK_ICON $'\UE138' # EXECUTION_TIME_ICON $'\UE89C' # @@ -144,6 +145,7 @@ case $POWERLEVEL9K_MODE in RUST_ICON $'\uE6A8' # PYTHON_ICON $'\U1F40D' # 🐍 SWIFT_ICON '' + GO_ICON '' PUBLIC_IP_ICON '' LOCK_ICON $'\UE138' # EXECUTION_TIME_ICON $'\uF253' @@ -210,6 +212,7 @@ case $POWERLEVEL9K_MODE in RUST_ICON $'\uE7A8 ' # PYTHON_ICON $'\UE73C ' # SWIFT_ICON $'\uE755' # + GO_ICON $'\uE626' # PUBLIC_IP_ICON $'\UF0AC' # LOCK_ICON $'\UF023' # EXECUTION_TIME_ICON $'\uF252' # @@ -276,6 +279,7 @@ case $POWERLEVEL9K_MODE in RUST_ICON '' PYTHON_ICON '' SWIFT_ICON 'Swift' + GO_ICON 'Go' PUBLIC_IP_ICON '' LOCK_ICON $'\UE0A2' EXECUTION_TIME_ICON 'Dur' |