Created
January 18, 2012 12:43
-
-
Save marzocchi/1632835 to your computer and use it in GitHub Desktop.
own
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
#!/bin/zsh | |
# curl https://raw.github.com/gist/1632835/own.sh | zsh | |
echo Installing packages | |
sudo apt-get install git zsh vim | |
echo Setting shell.. | |
chsh -s /bin/zsh | |
echo Installing shell files... | |
cd ~ | |
git clone git://github.com/marzocchi/dotfiles-zsh.git .dotfiles | |
cd .dotfiles | |
git submodule init | |
git submodule update | |
cd ~ | |
zsh ~/.dotfiles/setup.sh | |
. ~/.zshrc | |
echo Installing vimfiles | |
git clone git://github.com/marzocchi/vimfiles.git .vim | |
ln -s ~/.vim/.vimrc ~/.vimrc | |
vim -c 'BundleInstall' -c quitall | |
echo Installing ranger... | |
curl https://raw.github.com/gist/1632892/ranger.sh | zsh | |
echo Done! |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment