0
0
mirror of https://github.com/letic/Shell-Scripts.git synced 2024-09-28 05:56:04 +00:00

Update bootstrap.sh

This commit is contained in:
Mark McDonnell 2016-03-27 20:40:38 +01:00
parent 4852a90574
commit c7b5b64098

View File

@ -32,7 +32,7 @@ echo /usr/local/bin/bash | sudo tee -a /etc/shells
chsh -s /usr/local/bin/bash chsh -s /usr/local/bin/bash
# Configure Bash # Configure Bash
curl https://raw.githubusercontent.com/Integralist/dotfiles/master/.bashrc -o ~/.bashrc curl -LSso ~/.bashrc https://raw.githubusercontent.com/Integralist/dotfiles/master/.bashrc
cat > ~/.bash_profile <<EOF cat > ~/.bash_profile <<EOF
if [ -f $HOME/.bashrc ]; then if [ -f $HOME/.bashrc ]; then
@ -102,7 +102,7 @@ do
done done
# Configure Git # Configure Git
curl https://raw.githubusercontent.com/git/git/master/contrib/completion/git-prompt.sh -o ~/.git-prompt.sh curl -LSso ~/.git-prompt.sh https://raw.githubusercontent.com/git/git/master/contrib/completion/git-prompt.sh
cat > ~/.gitignore-global <<EOF cat > ~/.gitignore-global <<EOF
# bundler # bundler
@ -155,4 +155,4 @@ git config --global user.name Integralist
# Miscellaneous # Miscellaneous
echo --color --format documentation --format=Nc > ~/.rspec echo --color --format documentation --format=Nc > ~/.rspec
curl https://raw.githubusercontent.com/Integralist/dotfiles/master/.tmux.conf -o ~/.tmux.conf curl -LSso ~/.tmux.conf https://raw.githubusercontent.com/Integralist/dotfiles/master/.tmux.conf