Skip to content

Instantly share code, notes, and snippets.

@aaronbronow
Last active December 28, 2017 05:47
Show Gist options
  • Save aaronbronow/b36301475f6f0065562537388e939128 to your computer and use it in GitHub Desktop.
Save aaronbronow/b36301475f6f0065562537388e939128 to your computer and use it in GitHub Desktop.
USER_EMAIL=aaron@aaronbronow.com
echo "Setting up your Ubuntu tools..."
wget -O ~/.bash_profile https://gist.githubusercontent.com/aaronbronow/17c442af81cb4e746b7cc95974f8a8cf/raw
source ~/.bash_profile
sudo apt-get --yes update
sudo apt-get --yes install vim git-core tig curl tmux openvpn
# setup vim
wget -qO- https://gist.githubusercontent.com/aaronbronow/247ac01f79a8b0ca4beee951d816c223/raw | sh
wget -O ~/.gitconfig https://gist.githubusercontent.com/aaronbronow/4d562c0311f9bf493d85eef20c8c0157/raw
wget -O ~/.tmux.conf https://gist.githubusercontent.com/aaronbronow/c0fe9bbe131f918b54cc/raw
if [ ! -f ~/.ssh/id_rsa.pub ]; then
echo "Generating keys for $USER_EMAIL"
ssh-keygen -t rsa -N "" -C "$USER_EMAIL" -b 4096
fi
cat ~/.ssh/id_rsa.pub
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment