Skip to content

Instantly share code, notes, and snippets.

@cpageler93
Last active August 25, 2022 13:54
Show Gist options
  • Save cpageler93/fbe5c9f04edf6ede2649b5aaaea5a392 to your computer and use it in GitHub Desktop.
Save cpageler93/fbe5c9f04edf6ede2649b5aaaea5a392 to your computer and use it in GitHub Desktop.
SETUP
This Gist includes my OSX Developer Setup
# Dock Setup:
defaults write com.apple.dock autohide-time-modifier -float 0.25;killall Dock
defaults write com.apple.dock autohide-delay -float 0;killall Dock
Setup:
# install hack font
# http://sourcefoundry.org/hack/
# install xcode from store
## xcode download takes long.. so go ahead with homebrew, it will download the xcode command line tools for you
# install xcode themes: https://github.com/hdoria/xcode-themes/archive/master.zip
# install homebrew
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
# install carthage
brew install carthage
# install rvm
curl -sSL https://get.rvm.io | bash -s stable --ruby
rvm install ruby-2.4
# install bundler
gem install bundler
# install zsh and oh my zsh
brew install zsh zsh-completions
sh -c "$(curl -fsSL https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh)"
# install sublime
# https://www.sublimetext.com
# install sublime package control
# https://packagecontrol.io/installation
# add sublime link
ln -s "/Applications/Sublime Text.app/Contents/SharedSupport/bin/subl" /usr/local/bin/subl
# install docker
# https://docs.docker.com/docker-for-mac/install/#download-docker-for-mac
# install docker compose
curl -L https://github.com/docker/compose/releases/download/1.12.0/docker-compose-`uname -s`-`uname -m` > /usr/local/bin/docker-compose
sudo chmod +x /usr/local/bin/docker-compose
docker-compose --version
# install vapor
brew install vapor/tap/vapor
# install xcodes
brew install --cask xcodes
ZSH_THEME="eastwood"
{
"color_scheme": "Packages/Tomorrow Color Schemes/Tomorrow-Night.tmTheme",
"draw_white_spaces": "all",
"font_size": 18,
"highlight_line": true,
"ignored_packages":
[
"Vintage"
],
"rulers":
[
80,
120
],
"scroll_past_end": true,
"theme": "Spacefunk (Grey Tuesday).sublime-theme",
"draw_white_space": "all"
}
Package Control
IDL-Syntax
Swift
Dockerfile Syntax Highlighting
Pretty JSON
Gitignore
Theme - Spacefunk
Tomorrow Color Schemes
Theme: SecondGear
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment