Last active
August 25, 2022 13:54
-
-
Save cpageler93/fbe5c9f04edf6ede2649b5aaaea5a392 to your computer and use it in GitHub Desktop.
SETUP
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ZSH_THEME="eastwood" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Show hidden characters
{ | |
"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" | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Package Control | |
IDL-Syntax | |
Swift | |
Dockerfile Syntax Highlighting | |
Pretty JSON | |
Gitignore | |
Theme - Spacefunk | |
Tomorrow Color Schemes |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Theme: SecondGear |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment