Skip to content

Instantly share code, notes, and snippets.

@ljlm0402
Last active February 4, 2023 07:20
Show Gist options
  • Save ljlm0402/05513c82aaa0ff761d9ca45ccbf86e29 to your computer and use it in GitHub Desktop.
Save ljlm0402/05513c82aaa0ff761d9ca45ccbf86e29 to your computer and use it in GitHub Desktop.
맥북 셋팅 - Update At 2023. 02. 04

Chrome Extensions

2020-08-10

image image image

2020-12-01

image image

2023-02-24

image

image

image

Chrome Extensions - Toby

2021-02-15

image

2023-02-04

image

image

Git 설정

2020-12-01

image

2020-08-22

image

2020-02-13

image

2023-02-04

image

Hosting 설정

Vercel

image image

Netlify

image image

Surge

image image

Heroku

image image

NPM 글로벌 설치

2020-12-01 image

2020-08-22 image

2020-08-15 image

2020-02-13 image

2023-02-04

image

Homebrew 설치

  1. Homebrew 접속
$ /usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"

node 셋팅

  • nvm을 설치하여 버전을 관리
$ brew install nvm

You should create NVM's working directory if it doesn't exist:
$ mkdir ~/.nvm

Add the following to ~/.bash_profile, ~/.zshrc, ~/.profile or your desired shell configuration file:
$ vim ~/.bash_profile or ~/.zshrc or ~/.profile

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

$ source ~/.bash_profile or ~/.zshrc or ~/.profile

$ node -v and npm -v

nvm - node 신규 설치 후 package 설치

https://samuelsson.dev/update-nvm-installed-node-version-and-keep-globally-installed-packages/

image

image

image

image

# node 설치 및 패키지 이동
$ nvm install NEW_VERSION --reinstall-packages-from=OLD_VERSION
ex) nvm install 14.17.3 --reinstall-packages-from=14.8.0

# nvm 확인
$ nvm ls
 
# nvm 사용
$ nvm use NEW_VERSION
$ nvm alias default node

# npm 설치 확인
$ npm ls -g --depth=0

# 이전 버전 삭제
$ nvm uninstall OLD_VERSION

iterm2 테마 적용

  1. zsh 설치
$ brew install zsh
  1. oh-my-zsh 설치
$ sh -c "$(curl -fsSL https://raw.github.com/robbyrussell/oh-my-zsh/master/tools/install.sh)"
  1. 테마 설치
$ cd ~/.oh-my-zsh/themes
$ vim bullet-train.zsh-theme

---
https://github.com/caiogondim/bullet-train.zsh/blob/master/bullet-train.zsh-theme 내용 복붙
---

$ open ~/.zshrc
---
ZSH_THEME="bullet-train" 수정
---
  1. 서체 변경
  • hack 접속 다운로드

  • iterm2 적용

    • Preferences - Profiles -Text / Font => Hack 변경
  • vscode 적용

    • Preferences - Settings - terminal font 검색
    • Terminal > Intefrated: Font Family => "Hack" 변경
  • 참고

  1. Terminal 추가 설치
  • zsh-autosuggestions (자동완성)
$ brew install zsh-autosuggestions
$ source /usr/local/share/zsh-autosuggestions/zsh-autosuggestions.zsh
  • zsh-syntax-highlighting (하이라이트)
$ brew install zsh-syntax-highlighting
$ source /usr/local/share/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh
  • autojump (경로 이동)
$ brew install autojump
$ open ~/.zshrc
---
plugins=(git autojump) - 내용 수정

source /usr/local/share/zsh-autosuggestions/zsh-autosuggestions.zsh - 맨 아래 추가
source /usr/local/share/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh - 맨 아래 추가
---

Android, iOS 설치 및 셋팅

  1. Watchman 설치 Facebook에서 파일 시스템의 변경 사항을 보는 도구입니다. 더 나은 성능을 위해 설치하는 것이 좋습니다.
$ brew install watchman
  1. Android 설치
$ brew tap AdoptOpenJDK/openjdk
$ brew cask install adoptopenjdk8
  1. iOS 설치
  • Xcode 설치

  • CocoaPods 설치

$ sudo gem install cocoapods

VSCode Extensions

2020-08-10

image image

2020-12-01

image image

2023-02-04

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment