Last active
June 22, 2019 01:52
-
-
Save ttilberg/e80ec9d2259cafefa292d6e4bad62e52 to your computer and use it in GitHub Desktop.
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
# 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