GitHub - annagoldman/mac_setup: Checklist of things to install on a Mac · GitHub
Skip to content

annagoldman/mac_setup

Folders and files

Repository files navigation

Mac Setup

Do this First!

Essentials

Laptop Configs

  • Add Russian Keyboard

Google Chrome

  1. Install Google Chrome

iTerm2

  1. iTerm2 - https://www.iterm2.com/
  2. Term2 Theme - https://github.com/MartinSeeler/iterm2-material-design
  3. iTerm2 Font -  Hasklig font (https://github.com/i-tu/Hasklig)

Misc. Apps

Development Tools

Xcode

Command Line Developer Tools for Xcode

$ xcode-select --install

Visual Studio

https://code.visualstudio.com/

Homebrew

$ /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"

Fish

brew install fish

Set Fish as the default shell

type fish to check if it was installed correctly, if installed correctly, type exit

type which fish, copy the path

type sudo sh -c 'echo <your-fish-path-here> >> /etc/shells'

restart your terminal

type chsh -s <your-fish-path-here>

restart terminal again

it should work now

Java JDK

  • install latest version of Java JDK

Git

$ brew install git

When done, to test that it installed fine you can run:

$ which git

The output should be /usr/local/bin/git.

Always set your details before you create or clone repositories on a new system. This requires two commands in a terminal window:

$ git config --global user.name "Name"                                                                                     
git config --global user.email "email@emailaddress.com"

To enable colors in the output, which can be very helpful, enter this command:

git config --global color.ui auto

Generate SSH key for GitHub authorization

cd ~/
ssh-keygen -t rsa
pbcopy < ~/.ssh/id_rsa.pub

Upload your public SSH key to GitHub

Zotero

  • install the app
  • install the browser plug-in
  • login to sync data

Zoom

brew install --cask zoom

Sublime

  • install Sublime editor

WhatsApp

  • Install WhatsApp

Install plugins

Z

fisher add jethrokuan/z

About

Checklist of things to install on a Mac

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

Contributors