Last active
March 10, 2016 22:02
-
-
Save ngaloppo/6216772 to your computer and use it in GitHub Desktop.
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 -ex | |
# Paste this into ssh | |
# curl -sL https://gist.github.com/ngaloppo/6216772/raw | /bin/bash -ex | |
# When forking, you can get the URL from the download button. | |
pushd $HOME | |
### Install tools ### | |
packages='curl git vim tmux' | |
sudo -E apt-get -y install $packages | |
### Install spf13-vim ### | |
curl https://j.mp/spf13-vim3 -L > spf13-vim.sh && sh spf13-vim.sh || true | |
### Install homeshick ### | |
git clone https://github.com/andsens/homeshick.git $HOME/.homesick/repos/homeshick | |
source $HOME/.homesick/repos/homeshick/homeshick.sh | |
popd |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment