commit 107183edb5070004704c92856858be06b3891beb parent f8cb25d04a0bbfa9da6aaf71b2a9007a353ab565 Author: ryukamish <[email protected]> Date: Thu, 23 Jul 2026 00:31:26 +0530 going back to basic zsh prompt Diffstat:
| M | .zshrc | | | 16 | ++++++++-------- |
1 file changed, 8 insertions(+), 8 deletions(-)
diff --git a/.zshrc b/.zshrc @@ -196,23 +196,23 @@ alias ....='cd ../../..' # ========================= Single line prompt ====================== # Load version control info -# autoload -Uz vcs_info +autoload -Uz vcs_info # Load colors -# autoload -Uz colors && colors +autoload -Uz colors && colors # Run vcs_info before each prompt -# precmd_functions+=(vcs_info) +precmd_functions+=(vcs_info) # Enable prompt substitution -# setopt prompt_subst +setopt prompt_subst # Configure the format for git -# zstyle ':vcs_info:git:*' formats ' (%b)' -# zstyle ':vcs_info:git:*' enable git +zstyle ':vcs_info:git:*' formats ' (%b)' +zstyle ':vcs_info:git:*' enable git # Set the PROMPT variable to include the vcs_info_msg_0_ variable -# PROMPT='%F{#bb9af7}%~%f%F{#7dcfff}${vcs_info_msg_0_}%f %# ' +PROMPT='%F{#bb9af7}%~%f%F{#7dcfff}${vcs_info_msg_0_}%f %# ' # ===================== Double line prompt ====================== @@ -251,4 +251,4 @@ alias ....='cd ../../..' # Starship prompt # for times when prompt gets boring -eval "$(starship init zsh)" +# eval "$(starship init zsh)"