diff options
author | rutriff <mail@alextri.ru> | 2020-10-28 20:31:26 +0300 |
---|---|---|
committer | Marc Cornellà <hello@mcornella.com> | 2021-12-21 16:48:19 +0100 |
commit | a1ec96d125ad421bc291563378b96711689cb1b8 (patch) | |
tree | de1af4bf15a71f93b0b3953c18cc575366339bf3 /themes/af-magic.zsh-theme | |
parent | 904f8685f75ff5dd3f544f8c6f2cabb8e5952e9a (diff) | |
download | zsh-a1ec96d125ad421bc291563378b96711689cb1b8.tar.gz zsh-a1ec96d125ad421bc291563378b96711689cb1b8.tar.bz2 zsh-a1ec96d125ad421bc291563378b96711689cb1b8.zip |
fix(af-magic): add space before git and hg information (#9396)
Closes #9396
Diffstat (limited to 'themes/af-magic.zsh-theme')
-rw-r--r-- | themes/af-magic.zsh-theme | 4 |
1 files 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%}" |