이쁘고 강력한 터미널, 아래 이쁜 테마들을 탐방하도록 하자.

**brew install --cask iterm2** 

zsh, oh-my-zsh

터미널의 기본 설정이 bash에서 zsh로 넘어 갔다. 그만큼 zsh가 대세임을 알 수 있다.

brew install zsh

Untitled

oh-my-zsh 설치

sh -c "$(curl -fsSL <https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh>)"
# 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