From a1ec96d125ad421bc291563378b96711689cb1b8 Mon Sep 17 00:00:00 2001 From: rutriff Date: Wed, 28 Oct 2020 20:31:26 +0300 Subject: [PATCH] fix(af-magic): add space before git and hg information (#9396) Closes #9396 --- themes/af-magic.zsh-theme | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/themes/af-magic.zsh-theme b/themes/af-magic.zsh-theme index d939d546f..2ef9b02d7 100644 --- a/themes/af-magic.zsh-theme +++ b/themes/af-magic.zsh-theme @@ -30,13 +30,13 @@ fi RPS1+=" ${FG[237]}%n@%m%{$reset_color%}" # git settings -ZSH_THEME_GIT_PROMPT_PREFIX="${FG[075]}(${FG[078]}" +ZSH_THEME_GIT_PROMPT_PREFIX=" ${FG[075]}(${FG[078]}" ZSH_THEME_GIT_PROMPT_CLEAN="" ZSH_THEME_GIT_PROMPT_DIRTY="${FG[214]}*%{$reset_color%}" ZSH_THEME_GIT_PROMPT_SUFFIX="${FG[075]})%{$reset_color%}" # hg settings -ZSH_THEME_HG_PROMPT_PREFIX="${FG[075]}(${FG[078]}" +ZSH_THEME_HG_PROMPT_PREFIX=" ${FG[075]}(${FG[078]}" ZSH_THEME_HG_PROMPT_CLEAN="" ZSH_THEME_HG_PROMPT_DIRTY="${FG[214]}*%{$reset_color%}" ZSH_THEME_HG_PROMPT_SUFFIX="${FG[075]})%{$reset_color%}"