apt-get install curl
sh -c "$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"
git clone https://github.com/zsh-users/zsh-autosuggestions ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-autosuggestions
설치가 완료되었다면, ~/.oh-my-zsh/custom/plugins 라는 경로에 zsh-autosuggestions 라는 폴더가 생김. 이것을 zsh 에 반영을 시켜주어야 함.
vim ~/.zshrc
위의 사진처럼
plugins=(git zsh-autosuggestions)
로 버꾼다. 오타에 유의한다.
syntax highligh 기능은 적절한 리눅스 command라던지, 이전에 설정했던 올바른 alias가 typing 되었다면 색을 바꿔주는 기능이다.
default 색상은 올바른 command면 녹색, 틀린 command면 빨간색으로 표시가 된다.
git clone https://github.com/zsh-users/zsh-syntax-highlighting.git ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-syntax-highlighting
똑같이 .zshrc 에 plugins 를 추가한다.
plugins=(git zsh-autosuggestions zsh-syntax-highlighting)
그리고 환경변수를 설정하기 위해
source ~/.zshrc
명령어를 실행한다.
git clone --depth=1 https://github.com/romkatv/powerlevel10k.git ${ZSH_CUSTOM:-$HOME/.oh-my-zsh/custom}/themes/powerlevel10k
또 환경변수를 변경해준다. 이번에는 다른 곳이다.
위의 사진처럼 변경한다.
#ZSH_THEME=robbyrussell 을 아래처럼 변경
ZSH_THEME="powerlevel10k/powerlevel10k" 로 변경해주시면 끝이에요!
그리고 환경변수 적용
source ~/.zshrc
그러면 이러한 화면이 뜰 것이다.
터미널에서 안내하는대로 입력을 yes, no 아니면 restart 를 잘 입력해서 터미널 디자인을 맞추면 된다!