본문 바로가기

MacBook Pro M1 개발 셋팅

오토씨 2022. 2. 11.

참고URL: https://www.youtube.com/watch?v=B26yiuC5zPM

1. Dock에 있는 아이콘 모두 제거

2. Homebrew 설치

$ /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
$ echo 'eval "$(/opt/homebrew/bin/brew shellenv)"' >> /Users/dk/.zprofile
$ eval "$(/opt/homebrew/bin/brew shellenv)"

3. App 설치(homebrew)

$ brew install --cask visual-studio-code google-chrome brave-browser iterms

4. iterm config

  • Preferences > Appearance > General > Theme - "Minimal"
  • Preferences > Profiles > Session > "Status bar enabled" check
    Configure Status Bar -> Battery Level, CPU Utilization, Memory Utilization, Network Throughput 설정
    Configure Status Bar -> Auto-Rainbow: "Light Colors" 설정
  • https://itermscolorschemes.com/ 에서 파일 저장, txt 확장자 삭제, 더블클릭해서 설치, Profiles에서 반영

5. Oh My Zsh 설치

$ sh -c "$(curl -fsSL https://raw.github.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"

6. Powerlevel 10K

  • https://github.com/romkatv/powerlevel10k
  • Installation > Oh My Zsh
    $ git clone --depth=1 https://github.com/romkatv/powerlevel10k.git ${ZSH_CUSTOM:-$HOME/.oh-my-zsh/custom}/themes/powerlevel10k
    $ code ~/.zshrc
    ZSH_THEME="powerlevel10k/powerlevel10k"
  • iterm 종료, 재 실행, 설정완료

7. SW 패키지 설치

$ brew install pyenv pipenv go gh
$ pyenv install 3.x.x
$ pyenv global 3.x.x
$ gh auth login

8. vscode extensions

  • Python
  • ESLint
  • Prettier
  • GitLens
  • Material Icon Theme
  • Community Material Theme
  • Settings > terminal font > Terminal - Integrated: Font Family -> "MesloLGS NF"

9. rosetta

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

댓글