feat(.oh-my-zsh/custom/spy4x.zsh-theme): remove timestamp, because its actually useless

This commit is contained in:
Anton Shubin 2020-04-07 21:36:34 +03:00
parent e6cb7e55f3
commit 191cba3ad9

View File

@ -1,10 +1,9 @@
local return_code='%(?..%{$fg[red]%}%? ↵%{$reset_color%})' 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 current_dir='%{$terminfo[bold]$fg[green]%}%~%{$reset_color%}'
local git_branch='$(git_prompt_info)%{$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%} 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}" RPS1="${return_code}"