mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2025-12-26 02:12:33 +01:00
Fixed bug: The prompt was too large
This commit is contained in:
parent
5b8303ece7
commit
2044a50523
1 changed files with 4 additions and 4 deletions
|
|
@ -10,7 +10,7 @@
|
||||||
# author: Eric Bouchut
|
# author: Eric Bouchut
|
||||||
|
|
||||||
ZSH_THEME_GIT_PROMPT_PREFIX="±‹%{$fg_bold[yellow]%}"
|
ZSH_THEME_GIT_PROMPT_PREFIX="±‹%{$fg_bold[yellow]%}"
|
||||||
ZSH_THEME_GIT_PROMPT_SUFFIX="%{$reset_color%}›"
|
ZSH_THEME_GIT_PROMPT_SUFFIX="%{$reset_color%}› "
|
||||||
|
|
||||||
# clean_or_dirty
|
# clean_or_dirty
|
||||||
ZSH_THEME_GIT_PROMPT_DIRTY=" %{$fg[red]%}✗%{$reset_color%}"
|
ZSH_THEME_GIT_PROMPT_DIRTY=" %{$fg[red]%}✗%{$reset_color%}"
|
||||||
|
|
@ -28,15 +28,15 @@ ZSH_THEME_GIT_PROMPT_UNTRACKED="%{$fg_bold[green]%}✭%{$reset_color%}"
|
||||||
ZSH_THEME_GIT_PROMPT_AHEAD="%{$fg_bold[red]%}(!)%{$reset_color%}"
|
ZSH_THEME_GIT_PROMPT_AHEAD="%{$fg_bold[red]%}(!)%{$reset_color%}"
|
||||||
|
|
||||||
# short_sha
|
# short_sha
|
||||||
ZSH_THEME_GIT_PROMPT_SHA_BEFORE="%{$reset_color%}["
|
ZSH_THEME_GIT_PROMPT_SHA_BEFORE=" %{$reset_color%}["
|
||||||
ZSH_THEME_GIT_PROMPT_SHA_AFTER="%{$reset_color%}]"
|
ZSH_THEME_GIT_PROMPT_SHA_AFTER="%{$reset_color%}]"
|
||||||
|
|
||||||
local username="%{$fg_bold[green]%}%n%{$reset_color%}"
|
local username="%{$fg_bold[green]%}%n%{$reset_color%}"
|
||||||
local hostname="%{$fg_bold[magenta]%}%m%{$reset_color%}"
|
local hostname="%{$fg_bold[magenta]%}%m%{$reset_color%}"
|
||||||
local current_dir="$fg_bold[blue]%}%~%{$reset_color%}"
|
local current_dir="%{$fg_bold[blue]%}%~%{$reset_color%}"
|
||||||
|
|
||||||
# Left prompt: username@hostname:current_directory%
|
# Left prompt: username@hostname:current_directory%
|
||||||
PROMPT='$username@$hostname:$current_dir%# '
|
PROMPT='$username@$hostname:$current_dir%# '
|
||||||
|
|
||||||
# Right prompt when in a git repo: ±‹branch_name clean_or_dirty› status(ahead) [short_sha]
|
# Right prompt when in a git repo: ±‹branch_name clean_or_dirty› status(ahead) [short_sha]
|
||||||
RPROMPT='$(git_prompt_info) $(git_prompt_status)$(git_prompt_ahead) $(git_prompt_short_sha)'
|
RPROMPT='$(git_prompt_info)$(git_prompt_status)$(git_prompt_ahead)$(git_prompt_short_sha)'
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue