diff --git a/shell/shellIntegration-rc.zsh b/shell/shellIntegration-rc.zsh index 49a6b28..3f8619f 100644 --- a/shell/shellIntegration-rc.zsh +++ b/shell/shellIntegration-rc.zsh @@ -1,6 +1,13 @@ +builtin autoload -Uz add-zsh-hook + if [[ -f $USER_ZDOTDIR/.zshrc ]]; then ZDOTDIR=$USER_ZDOTDIR . $USER_ZDOTDIR/.zshrc fi -PS1="> " \ No newline at end of file +__tui_precmd() { + PS1="> " +} +PS1="> " + +add-zsh-hook precmd __tui_precmd \ No newline at end of file