From 2268edfd04538ed353b2834d511dcdeb70bc0426 Mon Sep 17 00:00:00 2001 From: meliurwen Date: Tue, 12 Apr 2022 23:12:25 +0200 Subject: [PATCH] In `powermeli.zsh-theme` the hostname color is cyan when connected via SSH and the '@' separator is blue --- zsh/.config/zsh/plugins/powermeli.zsh-theme | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zsh/.config/zsh/plugins/powermeli.zsh-theme b/zsh/.config/zsh/plugins/powermeli.zsh-theme index 5d840ff..902cc71 100755 --- a/zsh/.config/zsh/plugins/powermeli.zsh-theme +++ b/zsh/.config/zsh/plugins/powermeli.zsh-theme @@ -37,7 +37,7 @@ prompt_context() { if [ -z ${SSH_CLIENT+x} ]; then PROMPT_LINE="$PROMPT_LINE %n " else - PROMPT_LINE="$PROMPT_LINE %n@%m " + PROMPT_LINE="$PROMPT_LINE %n%{%F{blue}%}@%{%F{cyan}%}%m " fi }