Last active
August 17, 2022 06:28
-
-
Save girishso/3251999fa562cf8748e1528ad4ae1cef to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# A multiline prompt with username, hostname, full path, return status, git branch, git dirty status, git remote status | |
local return_status="%{$fg[red]%}%(?..⏎)%{$reset_color%}" | |
local host_color="green" | |
if [ -n "$SSH_CLIENT" ]; then | |
local host_color="red" | |
fi | |
PROMPT=' | |
%{$fg_bold[white]%} [%{$reset_color%}%{$fg_bold[${host_color}]%}%n@%m%{$reset_color%}%{$fg_bold[white]%}]%{$reset_color%} %{$fg_bold[white]%}%10c%{$reset_color%} $(git_prompt_info) $(git_remote_status) | |
%{$fg_bold[green]%} ➜%{$reset_color%} ' | |
RPROMPT='${return_status}%{$reset_color%}' | |
ZSH_THEME_GIT_PROMPT_PREFIX="%{$fg[grey]%}(%{$fg[red]%}" | |
ZSH_THEME_GIT_PROMPT_SUFFIX="%{$reset_color%}" | |
ZSH_THEME_GIT_PROMPT_DIRTY="%{$fg[grey]%}) %{$fg[yellow]%}⚡%{$reset_color%}" | |
ZSH_THEME_GIT_PROMPT_CLEAN="%{$fg[grey]%})" | |
ZSH_THEME_GIT_PROMPT_BEHIND_REMOTE="%{$fg_bold[magenta]%}↓%{$reset_color%}" | |
ZSH_THEME_GIT_PROMPT_AHEAD_REMOTE="%{$fg_bold[magenta]%}↑%{$reset_color%}" | |
ZSH_THEME_GIT_PROMPT_DIVERGED_REMOTE="%{$fg_bold[magenta]%}↕%{$reset_color%}" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment