iterm zsh 설치방법

iTerm2 설치

https://www.iterm2.com/downloads.html 에서 다운로드 후 설치합니다.

zsh 설치

bash 말고 zsh을 사용하기 위해 설치를 합니다.

1
2
3
brew install zsh zsh-completions
curl -L http://install.ohmyz.sh | sh
chsh -s `which zsh`

chsh: /usr/local/bin/zsh: non-standard shell 오류 발생할 경우

맨 아래에 which zsh했을때의 결과를 추가 후 저장

1
sudo vim /etc/shells

현재 shell 확인

1
echo $SHELL

zsh 설정 백업

1
2
mv .zshrc ~/OneDrive/settings # 원본 이동
ln -s ~/OneDrive/settings/.zshrc ~/ # 심볼릭 링크 생성

zsh-syntax-highlighting 설치하기

1
2
3
git clone https://github.com/zsh-users/zsh-syntax-highlighting.git

echo "source ${(q-)PWD}/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh" >> ${ZDOTDIR:-$HOME}/.zshrc

Agnoster 테마 설치하기

.zshrc 파일을 연 후 아래 코드를 변경해 준다

ZSH_THEME=”agnoster”

1
vim ~/.zshrc

username@hostname 없애는 방법

.zshrc 파일을 연 후 마지막 줄에 추가

1
prompt_context () { }

References