Rianshin

[iTerm2 + zsh]터미널을 보기 편하게~ 본문

Develop

[iTerm2 + zsh]터미널을 보기 편하게~

RianShin 2023. 3. 20. 16:29
728x90
반응형
SMALL

step1. brew 설치

/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"

 

step2. iTerm2 설치

https://iterm2.com/

 

iTerm2 - macOS Terminal Replacement

iTerm2 by George Nachman. Website by Matthew Freeman, George Nachman, and James A. Rosen. Website updated and optimized by HexBrain

iterm2.com

 

step3. zsh 설치

# zsh 설치하기
brew install zsh

# zsh 설치경로 확인하기
which zsh

# 기본 shell 변경하기
chsh -s $(which zsh)

 

step4. oh-my-zsh 설치

# wget curl 설치
brew install curl

# oh-my-zsh 설치
sh -c "$(curl -fsSL https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh)"

 

step5. 테마 선택

#설정파일 오픈
vi ~/.zshrc

#테마 변경
# See https://github.com/ohmyzsh/ohmyzsh/wiki/Themes
ZSH_THEME="bira"

#재기동
source ~/.zshrc
728x90
반응형
LIST
Comments