This is a fork of cobraz/dotfiles.
With a new machine, you first have to install Homebrew and setup
your SSH key.
You can do that with this command:
▶ ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"Next you need to clone this repository to your $HOME folder. Best practice is
to use YADM (a tool for managing dotfiles).
That is easily installed with brew, as such:
▶ brew install yadmThen you need to clone this repository. You can read how to get started with YADM under basics -> Getting started.
Or, just type this in your terminal:
▶ yadm clone git@github.com:AnneMatilde/dotfiles.gitYou should have all your files located in $HOME at this point. All you have to
do now is bootstrap! 🎉
▶ ./bootstrap.shTo install the Mac OS defaults, run this command:
▶ ./.macosStep one is to find the package (software) you'd like to install and append to the Dotfiles. You can search here: https://formulae.brew.sh/cask/
Next you should install that package on your current machine, like this:
brew install --cask spotifyTo make sure you remember which packages you use, Open up brew.sh, e.g. with
VSCode as such:
▶ code ~/brew.shAppend the link found on Brew Formulae to the list with # Tooling heading. We
use a Brewfile, so the entries in this files look like this:
brew "spotify"
Check which files have been changed with:
▶ yadm statusIf there is any changes, run these commands:
▶ yadm commit -a -m "<your description">
▶ yadm push