From 6c0c8863b778b9d46ca01d817a3a06edc0e394c9 Mon Sep 17 00:00:00 2001 From: Jason Swank Date: Wed, 6 May 2026 23:39:40 -0400 Subject: [PATCH] zsh: prompt --- zsh/.zshrc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/zsh/.zshrc b/zsh/.zshrc index a536edd..1fc6415 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 )