Skip to content

Instantly share code, notes, and snippets.

@JenRodge
Last active June 19, 2018 22:08
Show Gist options
  • Save JenRodge/07617c0b2463c22fa39ee2e814492ff8 to your computer and use it in GitHub Desktop.
Save JenRodge/07617c0b2463c22fa39ee2e814492ff8 to your computer and use it in GitHub Desktop.
# Run in command line:
# curl -L https://gist.githubusercontent.com/JenRodge/07617c0b2463c22fa39ee2e814492ff8/raw | /bin/bash -x
# Update, upgrade, and install miscellanies
echo -e '\n\033[1;34mInstalling Apt packages…\033[0m'
sudo apt-get -y update
sudo apt-get -y upgrade
sudo apt-get -y install git vim lsb-release scrot python python-pkg-resources thefuck autojump
# Install Homeshick
echo -e '\n\033[1;34mInstalling Homeshick…\033[0m'
git clone git://github.com/andsens/homeshick.git $HOME/.homesick/repos/homeshick
source "$HOME/.homesick/repos/homeshick/homeshick.sh"
# Get dotfiles
echo -e '\n\033[1;34mGrabbing Dotfiles…\033[0m'
homeshick clone -fb JenRodge/dotfiles
homeshick link -f dotfiles
# Install Archey
echo -e '\n\033[1;34mInstalling Archey…\033[0m'
wget http://github.com/downloads/djmelik/archey/archey-0.2.8.deb
sudo dpkg -i archey-0.2.8.deb
# Vim Plugins/Promptline
echo -e '\n\033[1;34mConfiguring Vim…\033[0m'
ex -s :+PlugInstall +qall
ex -s "+Promptline! ~/.shell_prompt.sh" +qall
alias reload='source $HOME/.bash_profile'
echo -e '\n\033[1;34mSetup Complete.\nRun "reload" to apply changes.\033[0m'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment