본문 바로가기
코딩 공부/Terminal

[맥 터미널] Oh My Zsh

by JH-M 2022. 6. 20.

Oh-My-Zsh 는 터미널을 좀더 이쁘고 편하게 사용하기 위한 zsh 플러그인입니다.

설치

# Oh My Zsh
sh -c "$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"

# zsh syntax hightlight
brew install zsh-syntax-highlighting

# zsh autosuggestions
brew install zsh-autosuggestions


.zshrc 파일수정

# 인텔 맥일 경우
ZSH_THEME="robbyrussell"
source /usr/local/share/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh
source /usr/local/share/zsh-autosuggestions/zsh-autosuggestions.zsh

or

# M1 맥일 경우
ZSH_THEME="robbyrussell"
source /opt/homebrew/share/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh
source /opt/homebrew/share/zsh-autosuggestions/zsh-autosuggestions.zsh

ZSH_THEME 변수로 테마를 변경할 수 있습니다.
🔗 Oh-My-Zsh 테마보기

 

Oh My Zsh 실행

source ~/.zshrc

명령어를 실행하면 위 이미지와 같이 Oh My Zsh 테마로 변경되는 것을 확인할 수 있습니다.

 

cd /u/j/dow 입력하고 Tab 키를 누르면 자동으로 추론된 경로를 입력됩니다.

방향키 위/아래 키를 눌러서 cd 로 시작하는 이전 명령어를 바로 확인해서 입력할 수 있습니다.


 

참고

🔗 https://ohmyz.sh/
🔗 https://github.com/ohmyzsh/ohmyzsh

댓글