Last active
January 3, 2016 11:28
-
-
Save bastih/8455924 to your computer and use it in GitHub Desktop.
fast dev env setup for hyrise
This file contains hidden or 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
#!/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