💻
Macの初期設定(2020年)
自分用メモ
-
Homebrew (https://brew.sh/index_ja)
$ /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install.sh)"
-
Git(defalult installed)
$ brew install git
-
zsh (Catalinaからはデフォルトでzshっぽい?defalult installe)
$ brew install zsh
-
Prezto (https://github.com/sorin-ionescu/prezto)
$ zsh $ git clone --recursive https://github.com/sorin-ionescu/prezto.git "${ZDOTDIR:-$HOME}/.zprezto" # Create a new Zsh configuration by copying the Zsh configuration files provided: $ setopt EXTENDED_GLOB for rcfile in "${ZDOTDIR:-$HOME}"/.zprezto/runcoms/^README.md(.N); do ln -s "$rcfile" "${ZDOTDIR:-$HOME}/.${rcfile:t}" done $ chsh -s /bin/zsh
-
PlantUML
brew install graphviz brew install plantuml
-
vscode & hyper & github CLI & docker
$ brew cask install visual-studio-code $ brew cask install hyper $ brew install github/gh/gh $ brew cask install docker
基本的には、ローカルを汚さないようにDocker上で開発をする
Discussion