Updated Installation/Mac.md

This commit is contained in:
kl-i 2021-08-18 02:27:45 +01:00
parent 8769e1295c
commit bc6622c045

View File

@ -9,17 +9,23 @@ Installing TheHoTTGame on MacOS
``` ```
# required dependencies # required dependencies
brew install git ripgrep brew install git ripgrep
# makes computer use latest git # makes computer use latest git
export PATH=/usr/local/bin:$PATH export PATH=/usr/local/bin:$PATH
# optional dependencies # optional dependencies
brew install coreutils fd brew install coreutils fd
# Installs clang # Installs clang
xcode-select --install xcode-select --install
# For fonts # For fonts
brew install fontconfig brew install fontconfig
# Installs emacs-mac
# Installs emacs-mac wth sexy icon and no title bars
brew tap railwaycat/emacsmacport brew tap railwaycat/emacsmacport
brew install emacs-mac --with-modules brew install emacs-mac --with-modules --with-emacs-sexy-icon --with-no-title-bars
# Adds gives the app
# Make an app link in Applications
ln -s /usr/local/opt/emacs-mac/Emacs.app /Applications/Emacs.app ln -s /usr/local/opt/emacs-mac/Emacs.app /Applications/Emacs.app
``` ```