Last active
December 24, 2015 17:19
-
-
Save nsantorello/6835160 to your computer and use it in GitHub Desktop.
Ubuntu setup
This file contains 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
sudo apt-get install git curl | |
# install zsh and mods | |
cd ~ | |
sudo apt-get install git-core highlight zsh perl | |
git clone git://github.com/miohtama/ztanesh.git ~/tools | |
~/tools/zsh-scripts/setup.zsh | |
zsh | |
chsh -s /bin/zsh $USER | |
# install RVM and latest ruby | |
\curl -L https://get.rvm.io | bash -s stable --ruby | |
echo "source $HOME/.rvm/scripts/rvm" >> ~/.zshrc | |
# configure git globals | |
git config --global user.name "Noah Santorello" | |
git config --global user.email "[email protected]" | |
# install tricked out vim | |
curl https://j.mp/spf13-vim3 -L > spf13-vim.sh && sh spf13-vim.sh |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment