Last active
December 25, 2015 16:49
-
-
Save palcu/7008821 to your computer and use it in GitHub Desktop.
Setup for a new machine
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
if [[ `uname` == 'Linux' ]]; then | |
add-apt-repository -y ppa:fcwu-tw/ppa | |
apt-get update | |
apt-get -y install vim zsh ruby rubygems curl fasd most | |
elif [[ `uname` == 'Darwin' ]]; then | |
brew install fasd zsh vim curl most | |
fi | |
curl -L https://github.com/robbyrussell/oh-my-zsh/raw/master/tools/install.sh | sh | |
gem install homesick | |
homesick clone palcu/dotfiles | |
homesick symlink dotfiles | |
git clone https://github.com/gmarik/vundle.git ~/.vim/bundle/vundle | |
vim +BundleInstall +quit +quit | |
chsh -s /bin/zsh | |
/bin/zsh |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment