Open4
Mac移行時の作業
Mac 設定編
サウンド設定
- 起動時にサウンドを再生:OFF
- ユーザーインターフェースのサウンドエフェクトを再生:OFF
スクリーンタイム
- スクリーンタイム:ON
ディスプレイ
- Night Shift設定
デスクトップとDock
- Dockアイコンを小さく変更
- Dockの位置を右に変更
- デフォルトのWEBブラウザをChromeに変更
インストール編
Homebrew
何はともあれということで...
手順(公式通り)
App
Chrome
brew install google-chrome
Obsidean
brew install obsidian
VSCode
brew install visual-studio-code
Logi Options Plus
brew install logi-options-plus
Docker Desktop
# caskをつけないと同名のCUI側のDockerがinstallされてくるので注意!!
brew install docker --cask
Jetbrain Toolbox
brew install --cask jetbrains-toolbox
Warp
brew install --cask warp
Development Tools
Git
brew install git
gh
brew install gh
アクセストークンを払い出して
gh auth login
で認証
基本設定
git config --global user.name "Your Name"
git config --global user.email "your.email@example.com"
その他
開発Tool系
asdf
brew install asdf
asdf plugin add golang
asdf plugin add awscli
asdf plugin add terraform
asdf plugin add nodejs
golang
export GOPATH=$(go env GOPATH)
export PATH=$PATH:$GOPATH/bin
node
asdf plugin add nodejs
# nodeをインストール
asdf install nodejs latest
# システム全体で使うバージョンを指定
asdf global nodejs latest
# yarnを使う準備
corepack enable
# asdfの再構築
asdf reshim nodejs