ETC

ETC) 내가 했던 Mac Setting 목록

snowe 2022. 1. 10. 23:09

Basic

  • Keyboard - Text 우측 체크박스 전부 해제
  • Accessibility - Pointer Control - Trackpad Options - Enable dragging three finger drag 로 설정(세손가락으로 드래그하기)
  • Finder - Preferences
    • New Finder windows show에서 폴더 설정해주기
    • Advanced - show all filename extensions
    • Downloads폴더 - View - View Option
      • Group by : Date added
      • Sort by : Name

Useful Apps

  • Alfred
  • AppCleaner
  • Chromium(크로미움으로 설치하기-용량,메모리측면에서 조흠)
  • Hidden Bar
  • IINA
  • Itsycal
  • KakaoTalk
  • KeyboardCleanTool
  • Magnet
  • Monosnap
  • Notion
  • Keka
  • Spark
  • Unicorn Blocker
  • VLC
  • YouTube Music(크롬 바로가기 앱)

Developer Apps

  • GitKraken
  • Figma
  • Google Sheets
  • Postman
  • Karabiner-Elements(한영키 전환 안버벅이게)
  • Karabiner-EvenViewer(한영키 전환 안버벅이게)
  • Sublime Text
  • Typora
  • Visual Studio Code
  • Xcode
  • D2coding 글씨체 설치해서 Xcode에 적용시키기
  • Zeplin
  • Slack

Useful

항상 ₩ 대신 ` 입력하기

$ cd ~/Library
$ mkdir KeyBindings
$ cd KeyBindings
$ touch DefaultKeyBinding.dict
$ vi DefaultKeyBinding.dict
{
  "₩" = ("insertText:", "`");
}

하고 재부팅

확장자 기본 연결 프로그램 설정

  • 확장자 파일 우클릭 - Get Info - Open with - app 선택 - Change All

Terminal Setting

Homebrew 설치

https://brew.sh/index_ko 에서 brew 설치

/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"

(M1)이라면 설치 이후에 아래 코드 추가적으로 실행

eval $(/opt/homebrew/bin/brew shellenv)

zsh, Oh My Zsh

// zsh
$ brew install zsh

// oh-my-zsh
$ sh -c "$(curl -fsSL https://raw.github.com/robbyrussell/oh-my-zsh/master/tools/install.sh)"

Node.js, epxress

// node설치하면서 npm 자동 설치됨 $ npm install express $ brew install node


iTerm2

  $ brew cask install iterm2

색상스키마(Snazzy), 테마설정(https://github.com/romkatv/powerlevel10k#pure-compatibility, pure테마),
username, vscode 터미널에 iterm2 적용, 폰트 적용 등등은 구글링 ㄱㄱ
iterm2 설정법 추천블로그

  • vscode code .명령어
    vscode - P - Shell command 입력 - Shell Command: Install 'code' command in PATH - Terminal 재실행

Git

기본 내장 git은 버전이 오래됐다.
// 오버라이드 옵션
// command line tool 최소 버전 충족 못하면 설치하라뜸
$ brew install -s git

// Options에서 pcre에 체크표시 되어있는지 확인
// 없으면 설치 "brew install pcre"
$ brew info git

// git version 2.24.3 (Apple Git-128) 아까 확인한 옛날 버전이 뜬다면
$ git --version

// "/usr/bin/git" -> 내장 버전
$ which git
$ export PATH=/usr/local/bin:$PATH

// "/usr/local/bin/git" -> 새로 설치한 버전
$ which git

//git version 2.23.0
$ git --version
// 계정정보 설정
$ git config --global user.name "your name"
$ git config --global user.email "your email"

// 한글 파일명 처리를 위한 설정
$ git config --global core.precomposeunicode true
$ git config --global core.quotepath false

Git SSH & GPG 설정


DerivedData 폴더 지우는 단축키 만들기

Automator - Quick Action 선택해서 하기