LoginSignup
12
12

More than 5 years have passed since last update.

Macの環境構築

Last updated at Posted at 2014-03-03

新品のMacBookAirを業務用に入手したので環境設定をメモしておく。

Homebrewを入れる

なにはともあれパッケージ管理。Homebrewを使います。会社のproxyを通すので.curlrcにプロキシ設定を書いておく。

# curlのプロキシ設定
echo proxy=YourProxyName:YourProxyPort > ~/.curlrc

# Homebrewのインストール
ruby -e "$(curl -fsSL https://raw.github.com/Homebrew/homebrew/go/install)"

homebrew-caskなるものがあるそうな

今のところMacユーザーはひとりなのでBoxenは仰々しいかなー? hombrew-caskなるものがあるらしいので入れておく。必要なものをBrewfileに入れてbrew bundleする。Brewfileはおいおい整理しよう。

update

# Add repositories.
tap phinze/cask || true

# CUI Packages.
install zsh
install git
install brew-cask

# GUI Packages.
cask install google-chrome
cask install kobito
cask install virtualbox
cask install vagrant

# Remove outedated versions.
cleanup

Proxyの設定のこと

Proxy下でmac使うの始めてなのですが、設定が面倒ですね。vagrant-configみたいに入っているアプリケーションみてdotfileに適宜追加してくれる便利ツールはないのでしょうか。自分で書けって話ですかね。

12
12
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
12
12