X-Git-Url: https://arthur.barton.de/gitweb/?p=ax-zsh.git;a=blobdiff_plain;f=themes%2Fax.axzshtheme;h=b4cae3489a1a7390ccc17f089c5a51d84ecabc22;hp=d0363b43a52cadde29650e65531ff89dd0b103bf;hb=90f962bfc6b06805f4c9cb56fc8c996973bb4d6c;hpb=f59153717abf80de1ceeca9687d4aff83b017559 diff --git a/themes/ax.axzshtheme b/themes/ax.axzshtheme index d0363b4..b4cae34 100644 --- a/themes/ax.axzshtheme +++ b/themes/ax.axzshtheme @@ -1,11 +1,26 @@ # AX-ZSH: Alex' Modular ZSH Configuration # ax.axzshtheme: Default AX-ZSH Theme +ZSH_THEME_VCS_PROMPT_PREFIX_SPACING="(" + +ZSH_THEME_PROMPT_PREFIX_SPACING=" " +ZSH_THEME_PROMPT_PREFIX="%{$fg_no_bold[green]%}%B" +ZSH_THEME_PROMPT_ROOT_PREFIX="%{$fg_no_bold[red]%}%B" +ZSH_THEME_PROMPT_SUFFIX="%b%{$reset_color%}" +ZSH_THEME_PROMPT_SUFFIX_SPACING=" " + ax_logname_prompt_functions=($ax_logname_prompt_functions ax_logname_prompt_root) ax_hostname_prompt_functions=($ax_hostname_prompt_functions ax_hostname_prompt_root) # Default prompt -PS1="$(ax_logname_prompt_yn)$(ax_hostname_prompt_yn)%B%2~%b "'$(ax_vcs_prompt)'"%{$fg_no_bold[green]%}%B\$%b%{$reset_color%} " +PS1="$(ax_logname_prompt_yn)$(ax_hostname_prompt_yn)%B%2~%b"'$(ax_vcs_prompt)'"$(ax_prompt)" # Prompt on right side -RPS1="%(?..%{$fg_no_bold[red]%}%? ↵%{$reset_color%})" +axzsh_is_utf_terminal \ + && RPS1="%(?..%{$fg_no_bold[red]%}%? ↵%{$reset_color%})" \ + || RPS1="%(?..%{$fg_no_bold[red]%}<%?>%{$reset_color%})" + +# Execution trace prompt. +PS4="$fg_no_bold[yellow]->$reset_color " +# This prompt is compatible with sh(1) and bash(1), too, so export it! +export PS4