zsh 설정하기
St1tch
(ubuntu 기준) 1. zsh설치a. sudo apt-get install zshb. cat /etc/shells -> zsh위치 확인c. chsh -> zsh로 기본 쉘 바꾸기(/bin/zsh)d. 재로그인 후 echo $SHELL 로 쉘 바뀐거 확인 2. oh-my-zsh 설치a. sudo apt-get install gitb. wget --no-check-certificate http://install.ohmyz.sh -O - | sh 3. syntax highlight 설치a. cd ~/.oh-my-zsh && git clone git://github.com/zsh-users/zsh-syntax-highlighting.git b. source ~/.oh-my-zsh/zsh-syntax-high..