Mac 開発環境構築メモ 2026
最近新しいMacbook Proのセットアップをすることがあったので、自分用に初期設定のメモを書いておく。 このページは逐次更新される予定である。
Homebrew
https://brew.sh/ のとおりにインストールする。現時点のコマンドは
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
フォント
プログラミング用の等幅フォントはSource Code Proを使っている。以下のコマンドでインストール
brew install --cask font-source-code-pro
各種アプリケーションをインストール
それぞれGoogle検索してインストールする。(TODO: brew install --cask に置き換える。)
- Google 日本語入力
- Chrome
- Slack
- iTerm2 (Ghostty で置き換えるかも)
- Visual Studio Code
- Cursor
- JetBrains Toolbox App
開発には関係ないが個人的に使っているもの
- Dropbox
- Discord
- Inkdrop
- Notion
- Spotify
Mac の設定
- iCloudにログインする
- Menubar -> Sound の Show When Active を Always Show に変更
- Keyboard -> Key repeat rateとdelay until repeatを一番右にする。
- Desktop & Dock -> Automatically hide and show the Dockを有効化
Finderの設定
- Settings -> Advanced -> Show all filename extensions を有効化
- View -> Show Path Barをクリック
iTerm2の設定
Profile
- Text -> Font を Source Code Pro に変更
- Nord color を https://github.com/nordtheme/iterm2 にしたがってインポートして選択する。
- Terminal -> Bell -> Silence bell
- Keys -> Left Option Key -> Esc+
Terminalの中で
各種便利ツールをインストールする
brew install uv
brew install ripgrep
brew install fd
brew install ghq
brew install fzf
brew install eza
brew install direnv
キーが押しっぱなしのときにアクセント選択画面が出るのを解除する
defaults write -g ApplePressAndHoldEnabled -bool true