X-Git-Url: https://arthur.barton.de/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=themes%2Fax.axzshtheme;h=93eb88a0529b263f771504be8bd32c11eb111760;hb=6c27d541f630d6414b04d6b4a800a72526b4a233;hp=47cad1d86e9e06c66d00dbf5c737f414d68dad5a;hpb=109de46759d4ad628da484610d71aac75e0ac989;p=ax-zsh.git diff --git a/themes/ax.axzshtheme b/themes/ax.axzshtheme index 47cad1d..93eb88a 100644 --- a/themes/ax.axzshtheme +++ b/themes/ax.axzshtheme @@ -1,19 +1,26 @@ # AX-ZSH: Alex' Modular ZSH Configuration # ax.axzshtheme: Default AX-ZSH Theme -ZSH_THEME_VCS_PROMPT_PREFIX_SPACING=" (" +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_PREFIX="%{$fg_bold[green]%}" +ZSH_THEME_PROMPT_ROOT_PREFIX="%{$fg_bold[red]%}" 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 +# The primary prompt string, printed before a command is read. 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%})" +# Primary prompt on the right-hand side. +axzsh_is_widechar_terminal \ + && RPS1="%(?..%{$fg_no_bold[red]%}%? ↵%{$reset_color%})" \ + || RPS1="%(?..%{$fg_no_bold[red]%}<%?>%{$reset_color%})" + +# Default 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