diff --git a/zsh/.zshrc b/zsh/.zshrc index a910226..02781e6 100644 --- a/zsh/.zshrc +++ b/zsh/.zshrc @@ -60,10 +60,10 @@ function set_prompt() { aws_prompt="" fi if git rev-parse --is-inside-work-tree >/dev/null 2>&1; then - PROMPT=$aws_prompt"%B${vcs_info_msg_0_} ▶ %b" + PROMPT=$aws_prompt"%B${vcs_info_msg_0_} ▶%b " else - # PROMPT=$aws_prompt"%B%m:%~ ▶ %b" - PROMPT=$aws_prompt"%B%m:%2~ ▶ %b" + # PROMPT=$aws_prompt"%B%m:%~ ▶%b " + PROMPT=$aws_prompt"%B%m:%2~ ▶%b " fi } precmd_functions+=( set_prompt )