diff options
| author | Ruben Beltran del Rio <jj@r.bdr.sh> | 2025-12-02 10:21:48 +0100 |
|---|---|---|
| committer | Ruben Beltran del Rio <jj@r.bdr.sh> | 2025-12-02 10:31:35 +0100 |
| commit | c06f19a29268059b9ef24c3206bed0a893aef44e (patch) | |
| tree | 9dac3237d20c421174766dc1884b4d899cb85aef /zsh/modules | |
| parent | 2187a08bd3ec76dc4d9c008331493be699e6ab00 (diff) | |
| parent | 8ce1b3d47f914811c289f06b8de43f7880125429 (diff) | |
Add jj status when available
Diffstat (limited to 'zsh/modules')
| -rw-r--r-- | zsh/modules/prompt.zsh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/zsh/modules/prompt.zsh b/zsh/modules/prompt.zsh index 5b79b3e..9b41e32 100644 --- a/zsh/modules/prompt.zsh +++ b/zsh/modules/prompt.zsh @@ -46,7 +46,7 @@ function prompt_setup { # Define prompts. PROMPT=' -%{%F{black}%}$(env_info)%{%F{magenta}%}%n%{%F{8}%}@%{%F{cyan}%}$(hostname -s)%{%f%} %{%B%F{blue}%}${PWD/#$HOME/~}%{%f%b%}$(git_info)%{%f%} + %{%F{black}%}$(env_info)%{%F{magenta}%}%n%{%F{8}%}@%{%F{cyan}%}$(hostname -s)%{%f%} %{%B%F{blue}%}${PWD/#$HOME/~}%{%f%b%}$(jj_info)$(git_info)%{%f%} %(?,,%{${%B%F{white}%}[%?]%{%f%b%} )%% ' } |