New Mac with High Sierra
This post outlines how to set up a new MacOS High Sierra with sane default dotfiles and basic applications. Dotfiles are heavily influenced by Mathias Bynes. My own dotfiles can be found here. Install brew Homebrew is a package manager which greatly simplifies the set up and maintenance of packages. 1 /usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" Clone the dotfiles 1 git clone https://github.com/SirIle/dotfiles.git ~/.dotfiles Install the default packages with a bundle 1 2 cd .dotfiles brew bundle Run RCM RCM links the files in the .dotfiles folder to the user’s home directory. This way they can easily be maintained with git in their own folder without the home folder becoming too complex with .gitignore. ...