From bddf77b0b545e76883f2a783bb6bc0a38b8965a0 Mon Sep 17 00:00:00 2001 From: Aaron Gutierrez Date: Tue, 30 Jan 2018 20:58:05 -0800 Subject: [PATCH] Add username@hostname back to PS1 --- .zshrc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.zshrc b/.zshrc index 2be15a5..1a414f9 100644 --- a/.zshrc +++ b/.zshrc @@ -26,7 +26,7 @@ export GIT_PS1_SHOWSTASHSTATE=1 export GIT_PS1_SHOWUPSTREAM="auto" export GIT_PS1_SHOWCOLORHINTS=1 -PS1=$'\n╭%{$fg[yellow]%}$(__git_ps1 "(%s)")%{$fg[green]%}[%~]%{$reset_color%}\n╰%# ' +PS1=$'\n╭%{$fg[yellow]%}$(__git_ps1 "(%s)")%{$fg[green]%}[%~]%{$reset_color%}\n╰%{$fg[cyan]%}%n%{$fg[yellow]%}@%{%F{214}%}%m%f%{$reset_color%}%# ' # set window title to working directory precmd () { print -Pn "\e]0;%~\a" }