1. zshrc
修改 vim ~/.zshrc文件,在文件底部增加:
prompt_context() {}
只保留用户名,隐藏主机名
prompt_context() {
if [[ "$USER" != "$DEFAULT_USER" || -n "$SSH_CLIENT" ]]; then
prompt_segment black default "%(!.%{%F{yellow}%}.)$USER"
fi
}
只保留主机名,隐藏用户名
prompt_context() {
if [[ "$USER" != "$DEFAULT_USER" || -n "$SSH_CLIENT" ]]; then
prompt_segment black default "%(!.%{%F{yellow}%}.)$HOST"
fi
}
提示command not found: prompt_segment
的话说明主题没有prompt_segment这个命令,得删除。
2. agnoster.zsh-theme
当oh-my-zsh使用了agnoster主题之后,每一行路径之前都会出现 用户名@主机名 的无用信息,我们可将其隐藏。
直接编辑agnoster.zsh-theme主题配置文件,命令如下:
vim ~/.oh-my-zsh/themes/agnoster.zsh-theme
在vim打开的文件中找到以下代码行:
# 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"
将 prompt_segment black default "%(!.%{%F{yellow}%}.)%n@%m"
注释即可,即 prompt 前面加 " # "