Skip to content

danseethaler/mac-init

Repository files navigation

MacOS Setup

This is a collection of applications, scripts, and configuration I use when setting up a new Mac.

Advantages of setting up from scratch

  • not pulling over programs or other information that you don’t need
  • avoiding any issues on the sync over from time machine
  • remember why you do things a certain way
  • keeps and open mind to adopting new technology and ways of doing things

Applications

  • VS Code
  • Sorted3
  • DayOne
  • Bear
  • Chrome
  • Framer X
  • Adobe CC
  • Sourcetree
  • Postman
  • Insomnia

Terminal

Tweak Apps

Custom git scripts

The .gitconfig file in this project can be used directly by the OS by adding the folowing configuration to ~/.gitconfig:

[include]
    path = ~/Developer/mac-init/.gitconfig

To enable git-recent command simply:

  • copy the git-recent file in this local repo it to your /usr/local/bin dir with sudo cp git-recent /usr/local/bin/git-recent
  • make the file executable with sudo chmod 755 /usr/local/bin/git-recent

Install git-checkout-interactive globally with npm i -g git-checkout-interactive

Change permission for .git_actions.js with chmod 755 .git_actions.js

Add to post-checkout to auto-pull certain branches:

BRANCH=$(git rev-parse --abbrev-ref HEAD)
if [[ "${BRANCH}" == "develop" || "${BRANCH}" == "master" ]]; then
  git pull -p
fi

About

New mac setup files

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published