-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinstall.sh
executable file
·34 lines (25 loc) · 944 Bytes
/
install.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
#!/bin/env bash
for dot in $(ls -A); do
if [ ! $dot == "README.md" -a ! $dot == "install.sh" ]; then
target="$HOME/$dot"
ln -sf "$PWD/$dot" "$target"
fi
done
# uncomment below to include pingme (must be on vpn)
# git clone [email protected]:zac/ping_me.git ~/ &> /dev/null
# Install and configure Vundle
git clone https://github.com/gmarik/Vundle.vim.git ~/.vim/bundle/Vundle.vim &> /dev/null
vim +PluginInstall +qall
# Install selecta
mkdir -p $HOME/.bin
curl -s https://raw.githubusercontent.com/garybernhardt/selecta/master/selecta > $HOME/.bin/selecta
chmod +x $HOME/.bin/selecta
# Make sure .viminfo is owned by you
sudo chown $USER $HOME/.viminfo
# Global Git Config
git config --global core.excludesfile '~/.gitignore'
# Uncomment the appropriate lines
# git config --global user.email "[email protected]"
git config --global user.email "[email protected]"
git config --global user.name "Zac Connelly"
source ~/.bashrc