Created
March 12, 2014 01:44
-
-
Save adam-beck/9499055 to your computer and use it in GitHub Desktop.
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/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