내맘대로 개발일지

[iTerm2] 커스텀 하기 본문

IT

[iTerm2] 커스텀 하기

eulBlue 2026. 3. 19. 11:07

회사 맥은 커스텀 해놨는데 집에는 안해놨기 때문에

여기에 설정한거 정리해놓고 집가서 그대로 따라할 예정이다.

iterm2 설치하기

 

iTerm2 - macOS Terminal Replacement

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

iterm2.com

cmd + , 눌러서 설정 들어가기

Theme : Dark

Tab bar location : Top

Status bar location Buttom 선택

Font: Osaka Regular-Mono 14pt

항상 글씨가 작아서 거북목했는데 좀 나아진것같아 기분이 좋다

Transparency : 1

Blur : Blur content behind the window 클릭 15

사실 블러 안줘도된다. 어차피 1 줘서 투명해보이지 않으니까 ..

New windows : 150 columns by 40 rows

Scrollback lines : Unlimited scrollback 클릭

Cluade Code 사용하다보면 긴 코드줄을 줄때 있는데 그때 초기화 되지않게 하기위함이다

Configure Status Bar 클릭

필요한거 밑으로 끌어서 보여줄거 고르고 / Auto-Rainbow : Automatic 해놓으면 알아서

알록달록하게 만들어준다

이제 터미널 작업

vi ~/.zshrc

#Oh My Zsh
export ZSH="$HOME/.oh-my-zsh"

plugins=(
    git
    zsh-autosuggestions
    zsh-syntax-highlighting
)

source $ZSH/oh-my-zsh.sh
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

git clone https://github.com/zsh-users/zsh-syntax-highlighting.git ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-syntax-highlighting
source ~/.zshrc