터미널을 켰을때 아래의 사진처럼 컴퓨터이름, 유저이름이 길게 나와 지저분해보여서 없애고 싶을 수 있습니다.

vi ~/.zshrc

prompt_context(){}
prompt_context() {
if [[ "$USER" != "$DEFAULT_USER" || -n "$SSH_CLIENT" ]]; then
prompt_segment black default "%(!.%{%F{yellow}%}.)$USER"
fi
}

prompt_context() {
prompt_segment black default "NEW_USERNAME"
}
source ~/.zshrc

적용을 완료하면 아래의 사진처럼 유저이름만 터미널에 표시된다. 깔끔하다!!

brew install autojump
brew install zsh-autosuggestions
brew install zsh-syntax-highlighting
위의 3가지를 설치 했으면 zsh를 사용하고 있기때문에 .zshrc 파일 하단에 아래 스크립트 추가 후 적용해줘야 플러그인이 작동합니다. (* 현재 autojump는 brew로 설치만해도 작동하는것으로 보임)
source /opt/homebrew/share/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh
source /opt/homebrew/share/zsh-autosuggestions/zsh-autosuggestions.zsh
source ~/.zshrc