0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

Macを買ったら必ず行うセットアップ(メモ)

Last updated at Posted at 2020-09-10

メモです

ショートカットキー設定

システム環境設定 → キーボード → 入力ソースを選択。

入力ソース

前の入力ソースを選択: cmt + スペース
次の入力ソースを選択: cmt + shift + スペース

Spotlight

Spotlight検索を表示: ctrl + スペース

Wifi接続

がんばる

ブラウザ

Chromeを立ち上げ、アカウントにログイン。
アカウントで同期設定がoffになっている場合は、元のPCで
設定→同期とGoogleサービスから、同期をONにする。

アプリ

  • Slack
  • iTerm
  • f.lux
  • Docker for Mac

homebrew

これがないと人権が得られない
https://brew.sh/index_ja

Emacs

$ brew install emacs

Git

$ brew install git

Catallinaからデフォルトシェルがzshに代わり、git-promptを入れるのにbashと同じやり方では通じない。
こちらの記事を参照。

最後に.gitconfigの内容を旧PCから新PCへ丸ごとコピー。

GitHub SSHキー設定

.ssh/config に下記を追加。

Host github github.com
    HostName ssh.github.com
    User git
    Port 443
    IdentityFile ~/.ssh/github_key

鍵を生成。

$ ssh-keygen -t rsa -C "メールアドレス"

GitHubのSSH And GPG Keysに、新しく生成された公開鍵を貼り付け。

VSCode

ここから
https://code.visualstudio.com/

下記のプラグインをとりあえず入れておく

  • GitLens
  • Prettier
  • Project Manager
  • vscode-reveal
  • Github Theme

Golang

下記を参照
https://qiita.com/sunnyG/items/cabc700e6d9a28219cc8

Pyenv

Nodebrew

Goland

GitリポジトリをClone

ひたすらがんばる

SSHキー引継ぎ

がんばる

aws credential引継ぎ

.aws/credentials ファイル

0
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?