Skip to content

Instantly share code, notes, and snippets.

@adam-stokes
Last active August 29, 2015 14:06
Show Gist options
  • Save adam-stokes/1325388f42d5f144e537 to your computer and use it in GitHub Desktop.
Save adam-stokes/1325388f42d5f144e537 to your computer and use it in GitHub Desktop.
install some shit
#!/bin/bash
sudo apt-update
sudo apt-get install -qyf git ubuntu-dev-tools emacs24
# pyenv
git clone git://github.com/yyuu/pyenv.git ~/.pyenv
# install pyenv virtualenv
git clone git://github.com/yyuu/pyenv-virtualenv.git ~/.pyenv/plugins/pyenv-virtualenv
# perlbrew
curl -L http://install.perlbrew.pl | bash
# rbenv
git clone git://github.com/sstephenson/rbenv.git ~/.rbenv
# install ruby build for rbenv
git clone git://github.com/sstephenson/ruby-build.git ~/.rbenv/plugins/ruby-build
# install git-extras
(cd /tmp && git clone --depth 1 https://github.com/visionmedia/git-extras.git && cd git-extras && sudo make install)
# install git hub sub
(cd /tmp && git clone --depth 1 git@github.com:ingydotnet/git-hub && cd git-hub && sudo make install)
# cask
curl -fsSkL https://raw.github.com/cask/cask/master/go | python
# emacs conf
git clone git@github.com:battlemidget/emacs.git ~/.emacs.d
(cd ~/.emacs.d && git submodule init && git submodule update && cask)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment