Try   HackMD

MacOS Development Environment Setup

Just a memo for work.

Package management

  1. Download brew.

Terminal

  1. Download iTerm2 through website.
  2. Download oh-my-zsh through command.
  3. Download iTerm2 color scheme and apply on iTerm2.
  4. Download powerlevel10k and its recommendated font.
  5. Download plugins.
  6. Edit .zshrc configuration, here is an example below:
    ​​​​ZSH_THEME="powerlevel10k/powerlevel10k"
    
    ​​​​plugins=(git autojump brew zsh-autosuggestions zsh-syntax-highlighting)
    

Git

  1. Set global user name and email.
    ​​​​git config --global user.name "USER_NAME"
    ​​​​git config --global user.email "USER_EMAIL"
    

Node

  1. Download nvm.
  2. Download LTS node through nvm.
  3. Download yarn through npm
    ​​​​npm install --global yarn
    
tags: Setup