Last active
May 29, 2016 19:26
-
-
Save alexshd/e1a856905e60b2667109 to your computer and use it in GitHub Desktop.
My base env setup
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/bash | |
sudo apt-get update | |
sudo apt-get install -y tmux vim git zsh mlocate httpie curl | |
curl -L https://www.chef.io/chef/install.sh | sudo bash | |
git clone https://github.com/gmarik/Vundle.vim.git ~/.vim/bundle/Vundle.vim | |
curl https://gist.githubusercontent.com/alexshd/bc39c6e4c2969e3286cd/raw/dda11b7fb968b6e9d344fad0f0c44400f42ad0eb/.tmux.conf > ~/.tmux.conf | |
curl https://gist.githubusercontent.com/alexshd/756459d0e840c02d47ee/raw/d6235761fb360bad93db6017f3fedbd65a871ab1/.vimrc > ~/.vimrc | |
sh -c "$(curl -fsSL https://raw.github.com/robbyrussell/oh-my-zsh/master/tools/install.sh)" | |
curl https://gist.githubusercontent.com/alexshd/b2193e40ef10a7c13512/raw/9fb90d70324292cfb2ba5e3a5ed4b453c72149d0/.zshrc > ~/.zshrc | |
vim +PluginInstall +qall || true |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment