Skip to content

Instantly share code, notes, and snippets.

@marzocchi
Created January 18, 2012 12:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save marzocchi/1632835 to your computer and use it in GitHub Desktop.
Save marzocchi/1632835 to your computer and use it in GitHub Desktop.
own
#!/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