推薦修改方式
vim ~/.zshrc # 重寫 prompt_context prompt_context () {} # 也可使用自定義提示符 prompt_context () { prompt_segment black default "hoo"; }
不推薦直接修改主題,更新或者更換主題須要從新修改
以 agnoster
爲例,能夠註釋 prompt_context 或者也能夠修改內容。git
註釋中也有提示,不須要顯示的能夠隱藏,不會影響別的組件的展現
vim ~/.oh-my-zsh/themes/agnoster.zsh-theme # Each component will draw itself, and hide itself if no information needs to be shown # Context: user@hostname (who am I and where am I) prompt_context() { if [[ "$USER" != "$DEFAULT_USER" || -n "$SSH_CLIENT" ]]; then prompt_segment black default "%(!.%{%F{yellow}%}.)%n@%m" fi } ## Main prompt build_prompt() { RETVAL=$? prompt_status prompt_virtualenv prompt_context prompt_dir prompt_git prompt_bzr prompt_hg prompt_end }