Last active
August 29, 2015 14:05
-
-
Save thestonefox/f07f20873aaed9c11b44 to your computer and use it in GitHub Desktop.
Base Environment Setup
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 | |
echo "Moving to home directory" | |
cd ~/ | |
echo "Setting up git defaults" | |
git clone https://github.com/thestonefox/git-config.git | |
ln -s git-config/.gitconfig ~/.gitconfig | |
ln -s git-ignore/.gitignore ~/.gitignore | |
git-config/helpers.sh | |
source ~/.bashrc | |
echo "Setting up vim defaults" | |
git clone https://github.com/thestonefox/vim-config.git | |
ln -s vim-config/.vim/ ~/.vim | |
ln -s vim-config/.vimrc ~/.vimrc |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment