Skip to content

Instantly share code, notes, and snippets.

@bastih
Last active January 3, 2016 11:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save bastih/8455924 to your computer and use it in GitHub Desktop.
Save bastih/8455924 to your computer and use it in GitHub Desktop.
fast dev env setup for hyrise
#!/bin/sh
sudo apt-get -y install sphinx-common emacs24-nox gdb valgrind tmux zsh perl ruby python-virtualenv
sudo apt-get -y --no-install-recommends install doxygen graphviz
git clone git://github.com/ndbroadbent/scm_breeze.git ~/.scm_breeze
curl -L http://cpanmin.us | sudo perl - App::cpanminus
sudo cpanm Term::ANSIColor Getopt::ArgvFile Getopt::Long Regexp::Common
git clone https://github.com/robbyrussell/oh-my-zsh.git ~/.oh-my-zsh
cat > .zshrc << TEST
export ZSH=\$HOME/.oh-my-zsh
# Set to the name theme to load.
export ZSH_THEME="robbyrussell"
plugins=(git)
unsetopt correct_all
unsetopt nomatch 2>/dev/null
source \$ZSH/oh-my-zsh.sh
TEST
~/.scm_breeze/install.sh
sudo chsh -s /bin/zsh vagrant
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment