이쁘고 강력한 터미널, 아래 이쁜 테마들을 탐방하도록 하자.
**brew install --cask iterm2**
터미널의 기본 설정이 bash에서 zsh로 넘어 갔다. 그만큼 zsh가 대세임을 알 수 있다.
brew install zsh
oh-my-zsh 설치
sh -c "$(curl -fsSL <https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh>)"
~/.zshrc
**에서 관련 상세 설정($PATH 등)을 명세한다.
vi ~/.zshrc
열어서 관련 설정을 해준다.
i
삽입 모드 ESC
를 통해 해제
:wq
저장 후 종료
u
작업 취소, shift + u
현재줄 작업 취소
source ~/.zshrc
해서 설정을 적용시킨다.
# zsh-completions
git clone <https://github.com/zsh-users/zsh-completions> ${ZSH_CUSTOM:=~/.oh-my-zsh/custom}/plugins/zsh-completions
# zsh-syntax-highlighting
git clone <https://github.com/zsh-users/zsh-syntax-highlighting.git> ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-syntax-highlighting
# zsh-autosuggestions
git clone <https://github.com/zsh-users/zsh-autosuggestions> ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-autosuggestions
# Powerlevel10k
git clone --depth=1 <https://github.com/romkatv/powerlevel10k.git> ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/themes/powerlevel10k
~/.zshrc
파일 수정
ZSH_THEME="powerlevel10k/powerlevel10k"
...
plugins=(
git
zsh-syntax-highlighting
zsh-completions
zsh-autosuggestions
)
...
# 맨 아래에 추가
autoload -U compinit && compinit