From 8769e1295c2fd8775d25d1871d4bf7a918173fb2 Mon Sep 17 00:00:00 2001 From: kl-i Date: Wed, 18 Aug 2021 00:55:31 +0100 Subject: [PATCH] Updated Installation/Mac.md --- Installation/Mac.md | 22 +++++++++++++++++----- 1 file changed, 17 insertions(+), 5 deletions(-) diff --git a/Installation/Mac.md b/Installation/Mac.md index 8783f82..7c39aac 100644 --- a/Installation/Mac.md +++ b/Installation/Mac.md @@ -3,11 +3,23 @@ Installing TheHoTTGame on MacOS `https://sourceforge.net/projects/git-osx-installer/` - `brew link --overwrite git` -`export PATH=/usr/local/bin:$PATH` - `rm -r .emacs.d` -`brew install ripgrep` -`brew install fontconfig` +``` +# required dependencies +brew install git ripgrep +# makes computer use latest git +export PATH=/usr/local/bin:$PATH +# optional dependencies +brew install coreutils fd +# Installs clang +xcode-select --install +# For fonts +brew install fontconfig +# Installs emacs-mac +brew tap railwaycat/emacsmacport +brew install emacs-mac --with-modules +# Adds gives the app +ln -s /usr/local/opt/emacs-mac/Emacs.app /Applications/Emacs.app +```