Skip to content

Instantly share code, notes, and snippets.

@ttilberg
Last active June 22, 2019 01:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ttilberg/e80ec9d2259cafefa292d6e4bad62e52 to your computer and use it in GitHub Desktop.
Save ttilberg/e80ec9d2259cafefa292d6e4bad62e52 to your computer and use it in GitHub Desktop.
# Some various moves
defaults write com.apple.screencapture location ~/Downloads && killall SystemUIServer
echo "alias clip=pbcopy
alias ls='ls -G'
alias ll='ls -alG'
export CLICOLOR=1
export LSCOLORS=GxFxCxDxBxegedabagaced
" >> ~/.bash_profile
# Install brew
xcode-select --install
ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
# Apps
brew cask install google-chrome docker iterm2 visual-studio-code sublime-text spotify dropbox azure-data-studio
brew install git freetds asdf gpg
git config --global user.name "Tim Tilberg"
git config --global user.email
# Set up langs
echo "export ASDF_DIR=$(brew --prefix asdf)" >> ~/.bash_profile
echo '. $ASDF_DIR/asdf.sh' >> ~/.bash_profile
echo '. $ASDF_DIR/etc/bash_completion.d/asdf.bash' >> ~/.bash_profile
soure ~/.bash_profile
asdf plugin-add ruby https://github.com/asdf-vm/asdf-ruby.git
asdf plugin-add nodejs https://github.com/asdf-vm/asdf-nodejs.git
bash ~/.asdf/plugins/nodejs/bin/import-release-team-keyring
asdf install ruby 2.6.3
asdf install nodejs 10.16.0
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment