Skip to content

Instantly share code, notes, and snippets.

@mattfelsen
Last active July 27, 2016 17:19
Show Gist options
  • Star 4 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save mattfelsen/0960b4fe95889215af8f to your computer and use it in GitHub Desktop.
Save mattfelsen/0960b4fe95889215af8f to your computer and use it in GitHub Desktop.
So you got a new computer, eh?

So you got a new computer, eh?

Point & click stuff

Xcode

  • Monokai theme
  • OF Addon Plugin
  • Prefs
    • Text editing -> indentation -> prefer tabs
    • Text editing -> show line numbers, trim whitespace from empty lines
    • Downloads -> Install command line tools

Terminal

Safari

Re-enable delete key as back button

defaults write com.apple.Safari com.apple.Safari.ContentPageGroupIdentifier.WebKit2BackspaceKeyNavigationEnabled -bool YES

System Preferences

  • Trackpad
    • Turn on tap to click
    • Turn off inverted scroll direction
  • Keyboard
    • Text -> turn off smart quotes
    • Shortcuts -> turn on full keyboard access to all controls (or just ctrl + f7)
  • Mission Control
    • Turn off displays have separate spaces # really? maybe i want this?

Misc Software (Most likely not in Homebrew Cask)

- [MiniPlayer](http://blog.mpow.it/MiniPlayer-Mac/)

CLI stuff

git

git config --global user.name "Matt Felsen"
git config --global user.email "mattfelsen@gmail.com"
git config --global core.editor "nano"

Homebrew

ruby -e "$(curl -fsSL https://raw.github.com/Homebrew/homebrew/go/install)"
brew doctor

Homebrew Cask

brew install caskroom/cask/brew-cask
brew tap caskroom/versions

And all the software!

brew cask install arduino
brew cask install arduino-beta
brew cask install atom
brew cask install bonjour-browser
brew cask install chicken
brew cask install coconutbattery
brew cask install cyberduck
brew cask install dropbox
brew cask install firefox
brew cask install flash
brew cask install fritzing
brew cask install google-chrome
brew cask install google-drive
brew cask install less
brew cask install mamp
brew cask install menumeters
brew cask install monolingual
brew cask install mou
brew cask install processing
brew cask install qlmarkdown
brew cask install quicklook-json
brew cask install sdformatter
brew cask install sequel-pro
brew cask install skype
brew cask install soundcleod
brew cask install spotify
brew cask install sublime-text3
brew cask install transmission
brew cask install vlc

node

brew install nodejs

Common node modules:

npm install -g express
npm install -g sails
npm install -g yo

atom packages

brew install atom # if you didn't above
apm install atom-color-highlight
apm install atom-monokai
apm install atom-monokai-dark
apm install autoclose-html
apm install autocomplete-plus
apm install close-after-last-tab
apm install color-picker
apm install linter
apm install linter-jshint
apm install minimap
apm install minimap-color-highlight
apm install minimap-find-and-replace
apm install minimap-highlight-selected
apm install monokai-flat
apm install regex-railroad-diagram
apm install sort-lines
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment