Coder Social home page Coder Social logo

mac-init's Introduction

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

mac-init's People

Contributors

danseethaler avatar

Watchers

James Cloos avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.