brew install --cask visual-studio-code google-chrome iterm2
(VScode, 크롬, iTerm2 설치)
Preferences -> Appearance -> General(탭) -> Theme을 Minimal 설정

Preferences -> Profiles -> Status bar enabled 체크

Preferences -> Profiles -> Configure Status Bar 클릭 후 원하는 메뉴 드래그앤드랍으로 설정

https://iterm2colorschemes.com
// curl이 설치되어 있지 않은 경우
brew install curl
// util이라는 이름의 directory를 생성하고 이동
mkdir util && cd util
// snazzy color theme를 download
// 만약 다른 color 테마를 다운로드 할 경우 curl -LO 이후에 해당 URL을 넣으면 됨
curl -LO https://raw.githubusercontent.com/mbadolato/iTerm2-Color-Schemes/master/schemes/Snazzy.itermcolors
다운로드 후 해당 파일 열기
위 선택 1 or 2로 진행 후 아래 설정하면 끝.
Preferences -> Profiles -> Colors -> Color Presets... 에서 다운받은 color 선택

터미널에 복사,붙여넣기 후 실행
sh -c "$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"
설치 후 powerlevel10k로 이동
https://github.com/romkatv/powerlevel10k#oh-my-zsh
터미널에 복사,붙여넣기 후 실행

git clone --depth=1 https://github.com/romkatv/powerlevel10k.git ${ZSH_CUSTOM:-$HOME/.oh-my-zsh/custom}/themes/powerlevel10k
터미널에서 code~/ .zshrc 입력 후 실행

VScode에서 .zshrc 파일이 열리면 아래와 같이 설정 변경

ZSH_THEME="powerlevel10k/powerlevel10k"
위 설정을 완료후 iterm2 재시작 하면 Powerlevel10 환경설정이 실행됨.
Syntax Highlight 적용하기
brew install zsh-syntax-highlighting
// 아래꺼로 적용하기 이거안됨 - source /usr/local/share/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh
source $(brew --prefix)/share/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh

brew install nvm gh git

export NVM_DIR="$HOME/.nvm"
[ -s "/opt/homebrew/opt/nvm/nvm.sh" ] && \. "/opt/homebrew/opt/nvm/nvm.sh" # This loads nvm
[ -s "/opt/homebrew/opt/nvm/etc/bash_completion.d/nvm" ] && \. "/opt/homebrew/opt/nvm/etc/bash_completion.d/nvm" # This loads nvm bash_completion

/usr/sbin/softwareupdate --install-rosetta --agree-to-license