From d4a06ae272358344a0fea2cf6f38a0afdda710f4 Mon Sep 17 00:00:00 2001 From: Cynthia Foxwell Date: Sun, 17 Apr 2022 19:47:32 -0600 Subject: [PATCH] zshrc: add extra space on ssh hostname --- common/.zshrc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/.zshrc b/common/.zshrc index 9a6f215..a70cf41 100644 --- a/common/.zshrc +++ b/common/.zshrc @@ -117,7 +117,7 @@ fi ssh_hostname="" get_is_in_ssh() { if [[ ! -z $SSH_TTY ]]; then - ssh_hostname="%F{blue}[%m]%f" + ssh_hostname="%F{blue}[%m]%f " fi } precmd_functions+=(get_is_in_ssh)