0
0

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-03-20

備忘録です。

#Mac設定
###Dock
Dockサイズ変更
Dockを自動的に表示/非表示をオン
###キーボード
F1、F2などのキーを標準のファクションキーとして使用をオン
入力ソースに半角カタカナを追加
###トラックパッド
タップでクリックをオン
###アクセシビリティ
ポインタコントロール>トラックパッドオプション>ドラッグを有効にするをオンにし3本指のドラッグを選択
####一般
最近使った項目の記憶数を0に設定
####Finder設定
新規Finderウィンドウで表示する場所をユーザ名にする
#####サイドバータブ

  • 最近の項目
  • ユーザ名ディレクトリ

#アプリ導入
###Google Chrome
公式サイトからdmgをDLしインストール
###Xcode
App Storeからインストール
###homebrew

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

####brewからインストール

brew cask install visual-studio-code
brew cask install mi
brew cask install sourcetree
brew cask install docker

####anyenv

brew install anyenv
anyenv init
echo '#anyenv settings' >> ~/.zshrc
echo 'eval "$(anyenv init -)"' >> ~/.zshrc
anyenv install --init

####node.js
anyenv install実行にnode-buildが必要なため先に入れる。

anyenv install nodenv
brew install node-build
echo yarn >> $NODENV_ROOT/default-packages
nodenv install 12.16.1
nodenv global 12.16.1  #LTS版を選択
nodenv rehash
0
0
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
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?