LoginSignup
4
3

More than 5 years have passed since last update.

Macに開発環境を整えるまでに、自分的にやること

Last updated at Posted at 2018-02-20

環境

  • macOS Sierra 10.13.3

やることリスト

  • 画面ロックの設定
  • Touch ID の設定
  • はてなブックマークの Chrome 拡張をインストール
  • Clipy のインストール
  • ターミナルのセットアップ
    • Dockに追加
    • プロファイルを Pro に設定
    • フォントを 12 にする
  • Xcode のインストール
    • 最近は Command Line Tools は同梱されているらしい
  • エディタ(ATOM)のインストールと設定
    • パッケージの追加
      • linter
      • Sublime-Style-Column-Selection
      • platformio-ide-terminal
      • project-manager
  • .bash_profile の設定
    • chsh でログインシェルを bash に変更
    • alias
    • git コマンド補完
  • Homebrew のインストール
  • Git のインストール
    • Xcode に同梱されている
  • rbenv のインストール
  • MySQL のインストール
    • brew install mysql
    • brew services start mysql
  • Vagrant のインストール
  • VirtualBox のインストール

.bash_profile

alias be='bundle exec'
alias gb='git branch'
alias gd='git diff'
alias gl='git log --oneline --graph'
alias gs='git status'
alias ll='ls -la'

# `sudo find / -name git-completion.bash` でパスを確認する
source /Applications/Xcode.app/Contents/Developer/usr/share/git-core/git-completion.bash
4
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
4
3