💻

Macの初期設定(2020年)

2020/09/20に公開

自分用メモ

  1. Homebrew (https://brew.sh/index_ja)

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

    $ brew install git 
    
  3. zsh (Catalinaからはデフォルトでzshっぽい?defalult installe)

    $ brew install zsh
    
  4. 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
    
  5. PlantUML

    brew install graphviz
    brew install plantuml
    
  6. 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