📝

Macの設定

2023/04/12に公開

Macを使いやすくするための個人設定を備忘録で残しておきます。

執筆時点の環境

MacBook Air (M1, 2020)
macOS: Ventura 13.3.1

システム環境設定

トラックパッド設定

  • システム設定->トラックパッド->ポイントとクリック->タップでクリック:ON

Finder

  • 設定->サイドバー->サイドバーに表示する項目
  • 設定->詳細->すべてのファイル名拡張子を表示

Homebrew

https://brew.sh/index_ja

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

==> Next steps:
- Run these two commands in your terminal to add Homebrew to your PATH:
    (echo; echo 'eval "$(/opt/homebrew/bin/brew shellenv)"') >> /Users/xxx/.zprofile
    eval "$(/opt/homebrew/bin/brew shellenv)"
- Run brew help to get started
- Further documentation:
    https://docs.brew.sh

Next stepsにあるコマンドを実行してパスを通す

% brew --version
Homebrew 4.0.12
Homebrew/homebrew-core (git revision 054928f5e8f; last commit 2023-02-16)
Homebrew/homebrew-cask (git revision ce33115a81; last commit 2023-02-16)

Xcode

Xcodes.appで管理
https://github.com/RobotsAndPencils/XcodesApp

% brew install --cask xcodes

Visual Studio Code

https://code.visualstudio.com/download
パスを通す
https://code.visualstudio.com/docs/setup/mac

Git

% git config --version
% git config --global user.name xxx
% git config --global user.email xxx
% git config --list

Discussion