From 191cba3ad91f4becab17ca537e0043f4735b6d0a Mon Sep 17 00:00:00 2001 From: Anton Shubin <2spy4x@gmail.com> Date: Tue, 7 Apr 2020 21:36:34 +0300 Subject: [PATCH] feat(.oh-my-zsh/custom/spy4x.zsh-theme): remove timestamp, because its actually useless --- .oh-my-zsh/custom/spy4x.zsh-theme | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.oh-my-zsh/custom/spy4x.zsh-theme b/.oh-my-zsh/custom/spy4x.zsh-theme index 6d813f6..d35e697 100644 --- a/.oh-my-zsh/custom/spy4x.zsh-theme +++ b/.oh-my-zsh/custom/spy4x.zsh-theme @@ -1,10 +1,9 @@ local return_code='%(?..%{$fg[red]%}%? ↵%{$reset_color%})' -local timestamp='%{$fg[yellow]%}[%D{%L:%M:%S}]' local current_dir='%{$terminfo[bold]$fg[green]%}%~%{$reset_color%}' local git_branch='$(git_prompt_info)%{$reset_color%}' local firebase_project=%{$fg[cyan]%}'$(node ~/.oh-my-zsh/custom/getFirebaseProject.js $(pwd))'%{$reset_color%} -PROMPT="${timestamp} ${current_dir} ${firebase_project} ${git_branch} +PROMPT="${current_dir} ${firebase_project} ${git_branch} $ " RPS1="${return_code}"