From 3549edb447103b23ebcc13669746c06057a93b38 Mon Sep 17 00:00:00 2001 From: Nick Nisi Date: Sun, 17 Jun 2012 18:32:28 -0500 Subject: [PATCH] [zsh] removing space from prompt --- zsh/prompt.zsh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zsh/prompt.zsh b/zsh/prompt.zsh index a648809..8d903d9 100644 --- a/zsh/prompt.zsh +++ b/zsh/prompt.zsh @@ -42,5 +42,5 @@ directory_name(){ echo "%{$fg_bold[cyan]%}%1/%\/%{$reset_color%}" } -export PROMPT=$'%{$fg_bold[blue]%}%n: $(directory_name) %{$fg_bold[cyan]%}➜%{$reset_color%} ' +export PROMPT=$'%{$fg_bold[blue]%}%n:%{$reset_color%}$(directory_name) %{$fg_bold[cyan]%}➜%{$reset_color%} ' export RPROMPT=$'$(git_dirty)$(need_push)'