LoginSignup
9
3

More than 1 year has passed since last update.

【備忘録】Macの初期セットアップ完全版

Last updated at Posted at 2022-12-20

Macを貸与とかされたタイミングで今後迷わないようにセットアップする項目をまとめます🔥


システム環境設定

トラックパッド

  • タップでクリックをON
  • クリックを「弱い」に設定
  • 軌跡の速さを「速い」に設定
    Image from Gyazo

キーボード

  • キーのリピートを「速い」に設定
  • リピート入力認識までの時間を「短い」に設定
  • ショートカット→「Spotlight検索を表示」をOFF
    Image from Gyazo

ディスプレイ

  • Night ShiftをONにして色温度を暖かめに設定
    Image from Gyazo

Bluethooth

自分のガジェットの登録
Image from Gyazo


Dockとメニューバー

  • Dockサイズを小さくする
  • 「Dockを自動的に表示/非表示」をON
  • Dockにある不要なアプリの削除
    Image from Gyazo


ブラウザ

Google Chromeをダウンロード



アプリ

ランチャーアプリ

Raycast
今までAlfredを使っていましたが、ぶっちぎりでRaycastがおすすめです🔥
Alfred, Clipy, Spectacle→Raycastに乗り換えました!
詳細は↓記事で!


ターミナル

Warp
今までiTermを使っていましたが、Warpの方がデフォで補完機能などが付いているので便利です!
詳細は↓記事で!


翻訳

DeepL


エディタ

VSCode
初期設定は↓記事を参考にさせていただきました🙏

VSCodeのターミナルの補完機能などにFigを入れておいた方が便利です!


入力補助ツール

キーボードの任意のキーにホットキーなどを設定できるKarabiberを入れています!
USキーボードの左Command→英字・右Command→カナ文字に紐付けてます。


リポジトリ管理

使いこなしてないけど、pecoとghqが便利らしい…!


その他

必要に応じて、

  • Slack
  • Docker
  • Postman
  • table plus
  • Notion
  • kindle
  • Logi Options

などなど



エイリアス

お好きなエイリアスを設定してコマンド入力を短縮します🏃

.zshrc
## git
alias g='git'
alias gs='git status'
alias gb='git branch'
alias gc='git checkout'
alias gcb='git checkout -b'
alias ga='git add'
alias gaa='git add -A'
alias gcm='git commit -m'
alias gme='git merge'
alias gp='git push'
alias gg='git graph'

## Rails
alias r='rails'
alias be='bundle exec'
alias bi='bundle install'
alias rs='rails s'
alias rc='rails c'

## Docker
alias d='docker'
alias c='clear'


最後に

そんなもんかな。。。?
忘れているものあったら随時更新します!
他におすすめのツールとか設定があれば是非コメントで教えてほしいです🙏

9
3
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
9
3