Skip to content

Instantly share code, notes, and snippets.

@adam-beck
Created March 12, 2014 01:44
Show Gist options
  • Save adam-beck/9499055 to your computer and use it in GitHub Desktop.
Save adam-beck/9499055 to your computer and use it in GitHub Desktop.
#!/bin/sh
# update and upgrade #
sudo apt-get update --yes
sudo apt-get upgrade
# install git
sudo apt-get install git
# install curl
sudo apt-get install curl
# install vim
sudo apt-get install vim
# install tmux
sudo apt-get install tmux
# change directory to Downloads
cd ~/Downloads
# create a temporary directory
mkdir temporary_dir
# change to temporary_dir
cd $_
# install solarized dir colors
git clone https://github.com/seebi/dircolors-solarized.git
find ./ -type f -name dircolors.ansi-dark | xargs -I foobar mv foobar ~/.dircolors
eval `dircolors ~/.dircolors`
# change gnome-terminal colors to solarized theme
git clone https://github.com/sigurdga/gnome-terminal-colors-solarized.git
find ./ -type f -name set_dark.sh | xargs -I foobar ./foobar
# create folders for Pathogen
mkdir -p ~/.vim/autoload ~/.vim/bundle
# install Pathogen
curl -Sso ~/.vim/autoload/pathogen.vim https://raw.github.com/tpope/vim-pathogen/master/autoload/pathogen.vim
# install vim solarized colorscheme
cd ~/.vim/bundle
git clone git://github.com/altercation/vim-colors-solarized.git
# install solarized colors for tmux
cd ~/Downloads/temporary_dir
git clone https://github.com/seebi/tmux-colors-solarized.git
cd tmux-colors-solarized
cat tmuxcolors-256.conf >> ~/.tmux.conf
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment