Skip to content

Instantly share code, notes, and snippets.

@nsantorello
Last active December 24, 2015 17:19
Show Gist options
  • Save nsantorello/6835160 to your computer and use it in GitHub Desktop.
Save nsantorello/6835160 to your computer and use it in GitHub Desktop.
Ubuntu setup
sudo apt-get install git curl
# install zsh and mods
cd ~
sudo apt-get install git-core highlight zsh perl
git clone git://github.com/miohtama/ztanesh.git ~/tools
~/tools/zsh-scripts/setup.zsh
zsh
chsh -s /bin/zsh $USER
# install RVM and latest ruby
\curl -L https://get.rvm.io | bash -s stable --ruby
echo "source $HOME/.rvm/scripts/rvm" >> ~/.zshrc
# configure git globals
git config --global user.name "Noah Santorello"
git config --global user.email "nsantorello@gmail.com"
# install tricked out vim
curl https://j.mp/spf13-vim3 -L > spf13-vim.sh && sh spf13-vim.sh
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment