diff options
author | Robby Russell <robby@planetargon.com> | 2023-10-13 15:38:13 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-10-13 15:38:13 -0700 |
commit | f7130bb529a2d15652f739c552688b34aac63315 (patch) | |
tree | 2becf9095823764ba4a1616ba16bf0a9d2a3af15 | |
parent | 2db53ff1da078b2207cb98736370f1f145e5c667 (diff) | |
download | zsh-f7130bb529a2d15652f739c552688b34aac63315.tar.gz zsh-f7130bb529a2d15652f739c552688b34aac63315.tar.bz2 zsh-f7130bb529a2d15652f739c552688b34aac63315.zip |
fix(gnzh): Don't show .local for local hostnames in theme
Fixes #10871
-rw-r--r-- | themes/gnzh.zsh-theme | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/themes/gnzh.zsh-theme b/themes/gnzh.zsh-theme index 1e6c4e93b..ca62320e2 100644 --- a/themes/gnzh.zsh-theme +++ b/themes/gnzh.zsh-theme @@ -21,7 +21,7 @@ fi if [[ -n "$SSH_CLIENT" || -n "$SSH2_CLIENT" ]]; then PR_HOST='%F{red}%M%f' # SSH else - PR_HOST='%F{green}%M%f' # no SSH + PR_HOST='%F{green}%m%f' # no SSH fi |