18 lines
543 B
Bash
Executable file
18 lines
543 B
Bash
Executable file
#!/bin/bash
|
|
|
|
LINK_FILES=(bashrc vimrc tmux.conf gitconfig dircolors)
|
|
mkdir ~/.home-git-back 2>/dev/null
|
|
for file in ${LINK_FILES[@]}; do
|
|
if [ ! -L ~/.${file} ] ; then
|
|
mv -v ~/.${file} ~/.home-git-back
|
|
ln -s $(pwd)/${file} ~/.${file}
|
|
fi
|
|
done
|
|
|
|
|
|
[ ! -d ~/.bash-git-prompt ] && git clone https://github.com/nold360/bash-git-prompt.git ~/.bash-git-prompt
|
|
|
|
mkdir ~/.vim 2>/dev/null
|
|
[ ! -d ~/.vim/bundle/Vundle.vim ] && git clone https://github.com/VundleVim/Vundle.vim.git ~/.vim/bundle/Vundle.vim
|
|
|
|
vim -c ":PluginInstall" -c ":q" -c ":q"
|