51 lines
1.3 KiB
Bash
51 lines
1.3 KiB
Bash
|
trash ~/.tmux.conf ~/.gitconfig ~/.vimrc ~/.vimperatorrc ~/.gitignore_global ~/.bashrc ~/.bash_aliases ~/.bash_functions
|
||
|
ln -s ${PWD}/gitignore_global ~/.gitignore_global
|
||
|
ln -s ${PWD}/vimrc ~/.vimrc
|
||
|
ln -s ${PWD}/vimperatorrc ~/.vimperatorrc
|
||
|
ln -s ${PWD}/tmux.conf ~/.tmux.conf
|
||
|
ln -s ${PWD}/gitconfig ~/.gitconfig
|
||
|
ln -s ${PWD}/bashrc ~/.bashrc
|
||
|
ln -s ${PWD}/bash_aliases ~/.bash_aliases
|
||
|
ln -s ${PWD}/bash_functions ~/.bash_functions
|
||
|
while getopts :b option
|
||
|
do
|
||
|
case "$option" in
|
||
|
b)
|
||
|
if [ -f ~/.vim/bundle/vundle/ ]
|
||
|
then
|
||
|
echo "Installing vundle"
|
||
|
git clone https://github.com/gmarik/vundle.git ~/.vim/bundle/vundle
|
||
|
fi
|
||
|
vim +BundleInstall +qa
|
||
|
;;
|
||
|
*)
|
||
|
echo "Flag not found"
|
||
|
;;
|
||
|
esac
|
||
|
done
|
||
|
if [ -f ~/.vim/plugin/ ]
|
||
|
then
|
||
|
echo "Installing plugin folder in ~/.vim/"
|
||
|
mkdir -p ~/.vim/plugin/
|
||
|
fi
|
||
|
if [ -f ~/.vim/plugin/backup/ ]
|
||
|
then
|
||
|
echo "Installing backup folder in ~/.vim/"
|
||
|
mkdir -p ~/.vim/backup/
|
||
|
fi
|
||
|
if [ -f ~/.vim/plugin/undo/ ]
|
||
|
then
|
||
|
echo "Installing undo folder in ~/.vim/"
|
||
|
mkdir -p ~/.vim/undo/
|
||
|
fi
|
||
|
if [ -f ~/.vim/tmp/ ]
|
||
|
then
|
||
|
echo "Installing tmp folder in ~/.vim/"
|
||
|
mkdir -p ~/.vim/tmp/
|
||
|
fi
|
||
|
if [ ! -f ~/.vim/plugin/sessionman.vim ]
|
||
|
then
|
||
|
echo "Installing sessionman in ~/.vim/plugin/"
|
||
|
wget -O ~/.vim/plugin/sessionman.vim http://www.vim.org/scripts/download_script.php?src_id=15599
|
||
|
fi
|