Table of Content
Macの開発環境構築(macOS 10.15 Catalina編)
Catalinaの変更点
今回の変更点
OSがCatalinaになった
Shellがbashからzshになったのでパスを通すコマンドが変更になった。
OS設定の変更
キー入力周り
- 入力ソースに日本語(ひらがな・英字)を追加
- 入力ソースから英語を削除
- ライブ変換をOFF
- 推測候補表示をOFF
- Shiftキーの動作を英字モードに変更
- SpotlightのショートカットをOFF
- Caps Lockキーで英字入力モードと切り替えるをON
- 入力ソース切り替えを command + space に変更
Dock
- Dockを自動的に表示/非表示をON
- 最近使ったアプリケーションをDockに表示をOFF
Finder
- 新規Finderで開く場所をホームディレクトリに変更
- サイドバーにホームディレクトリを追加
トラックパッド
- その他ジェスチャの「ページ間をスワイプ」を「3本指でスワイプ」に変更
- その他ジェスチャの「フルスクリーンアプリケーション間をスワイプ」を「4本指でスワイプ」に変更
インストールしたアプリケーション
Google Chrome
www.google.co.jp デフォルトブラウザに設定する。
Visual Studio Code

Visual Studio Code - Code Editing. Redefined
Visual Studio Code is a code editor redefined and optimized for building and debugging modern web and cloud applications. Visual Studio Code is free and availa...
この時点の最新版は Version 1.47
GitHub Desktop
GitHub Desktop
Simple collaboration from your desktop
Xcode
AppStore から Xcode 11.6(その時点の最新版)をインストールする。
インストール後、Xcodeを起動してコマンドラインツールをいれる。
Unity Hub
Docker Desktop
ターミナルから導入したもの
gem (アップデート)
sudo gem update --system
Homebrew
/usr/bin/ruby -e “$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)”
karabinerをインストールする
brew cask install karabiner-elements
ndenv
brew install ndenv
echo ‘export PATH=“*HOME*/.*anyenv*/*bin*:PATH”’ >> ~/.zprofile
echo ‘eval “$(ndenv init -)”’ >> ~/.zprofile
exec $SHELL -l
git clone https://github.com/riywo/node-build.git $(ndenv root)/plugins/node-build
node
ndenv install v13.6.0
ndenv rehash
ndenv global v13.6.0
npm(アップデート)
npm update -g
yarn
brew install yarn
ffmpeg
brew install ffmpeg
ターミナルから導入したもの
gem (アップデート) sudo gem update –system
Homebrew /usr/bin/ruby -e “$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)”
ndenv
brew install ndenv
echo ‘export PATH=“*HOME*/.*anyenv*/*bin*:PATH”’ >> ~/.zprofile
echo ‘eval “$(ndenv init -)”’ >> ~/.zprofile
exec $SHELL -l
git clone https://github.com/riywo/node-build.git $(ndenv root)/plugins/node-build
node
ndenv install v13.6.0 ndenv rehash ndenv global v13.6.0
npm(アップデート) npm update -g
yarn brew install yarn
ffmpeg brew install ffmpeg
コメント