diff --git a/modules/home/caem/core/zsh/conf.d/ps1.zsh b/modules/home/caem/core/zsh/conf.d/ps1.zsh index 7690f0f..7b410c9 100644 --- a/modules/home/caem/core/zsh/conf.d/ps1.zsh +++ b/modules/home/caem/core/zsh/conf.d/ps1.zsh @@ -16,10 +16,6 @@ elif [[ "$path_no_ghostty" == *"/nix/store"* ]]; then local nix_shell_ps1="$nix_shell_ps1_t" fi -setopt prompt_subst -autoload -Uz vcs_info zstyle ':vcs_info:*' formats " ${c34}${c0}${c31}(%b)${c0}" -zstyle ':vcs_info:*' enable git -precmd () { vcs_info } -export PS1="${c38}[${c35}%3~${vcs_info_msg_0_}${nix_shell_ps1}${c38}]${c0}# " +export PS1="${c38}[${c35}%3~${c0}${vcs_info_msg_0_}${nix_shell_ps1}${c38}]${c0}# " diff --git a/modules/home/caem/core/zsh/default.nix b/modules/home/caem/core/zsh/default.nix index c20cb51..795b504 100644 --- a/modules/home/caem/core/zsh/default.nix +++ b/modules/home/caem/core/zsh/default.nix @@ -54,6 +54,13 @@ tree = "tre"; }; + initExtraFirst = '' + setopt prompt_subst + autoload -Uz vcs_info + zstyle ':vcs_info:*' enable git + precmd () { vcs_info } + ''; + initExtra = '' alias -g -- -h='-h 2>&1 | bat --language=help --style=plain' alias -g -- --help='--help 2>&1 | bat --language=help --style=plain'