zsh에 자동완성, 코드 문법 하이라이팅 플러그인 추가
1. Oh-My-Zsh 플러그인 폴더로 이동 cd ~/.oh-my-zsh/custom/plugins 2. 플러그인 레파지토리 클론 # 자동완성 플러그인 git clone https://github.com/zsh-users/zsh-autosuggestions ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-autosuggestions # 코드 문법 하이라이팅 플러그인 git clone https://github.com/zsh-users/zsh-syntax-highlighting.git ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-syntax-highlighting 3. 설치 됐는지 확인 $ZSH_CUSTOM/plugins/zsh-a..