diff options
author | Adam Hovorka <[email protected]> | 2018-10-06 22:08:59 -0600 |
---|---|---|
committer | Adam Hovorka <[email protected]> | 2018-10-06 22:08:59 -0600 |
commit | e97f406a99008f3a73209eb749b0a1382eb5c6dc (patch) | |
tree | 5ecb1e11ef5695a7dd4e8a97d9fceee80ccf25bc /base/zsh | |
parent | 5f0f094e81c935635d875fa26ab0ef1517c83652 (diff) |
Remove command time from prompt
Diffstat (limited to 'base/zsh')
-rw-r--r-- | base/zsh/prompt_pure_setup | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/base/zsh/prompt_pure_setup b/base/zsh/prompt_pure_setup index b585473..be87f60 100644 --- a/base/zsh/prompt_pure_setup +++ b/base/zsh/prompt_pure_setup @@ -146,7 +146,7 @@ prompt_pure_preprompt_render() { # username and machine if applicable #preprompt+=$prompt_pure_username # execution time - preprompt+="%F{20}${prompt_pure_cmd_exec_time}%f" + #preprompt+="%F{20}${prompt_pure_cmd_exec_time}%f" # end with symbol, colored by previous command exit code # local symbol_color="%(?.${PURE_PROMPT_SYMBOL_COLOR:-magenta}.red)" # preprompt+=" %F{$symbol_color}${PURE_PROMPT_SYMBOL:-❯}%f" @@ -177,7 +177,7 @@ prompt_pure_preprompt_render() { prompt_pure_precmd() { # check exec time and store it in a variable - prompt_pure_check_cmd_exec_time + #prompt_pure_check_cmd_exec_time # by making sure that prompt_pure_cmd_timestamp is defined here the async functions are prevented from interfering # with the initial preprompt rendering |