You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

38 lines
1.0 KiB
Bash

#!/usr/bin/env bash
BACKUP_DIR="$HOME/.dotfiles_backup"
BASE_DIR="$HOME/.dotfiles"
9 years ago
INCLUDE=".bashrc .bash_profile .vimrc .vim .screenrc .tmux.conf"
8 years ago
if [[ -d "$BACKUP_DIR" ]] ; then
echo "removing previous backup at $BACKUP_DIR"
rm -rf "$BACKUP_DIR"
fi
echo "backing up existing dotfiles into $BACKUP_DIR"
mkdir -p "$BACKUP_DIR"
for FNAME in $INCLUDE; do
# if a file doesn't actually exist in the repo, do nothing.
if [[ ! -a "$BASE_DIR/$FNAME" ]]; then
echo "WARNING: file $BASE_DIR/$FNAME does not exist"
continue
fi
# back up existing dotfiles, just for safety
FULLPATH="$HOME/$FNAME"
if [[ -a "$FULLPATH" && ! -h "$FULLPATH" ]]; then
echo "mv $FULLPATH -> $BACKUP_DIR/$FNAME"
mv "$FULLPATH" "$BACKUP_DIR/$FNAME"
fi
# symlink in the versioned dotfiles.
echo "ln $BASE_DIR/$FNAME" "$HOME/$FNAME"
ln -sf "$BASE_DIR/$FNAME" "$HOME/$FNAME"
done
# setup Vundle
echo "cloning Vundle"
git clone https://github.com/VundleVim/Vundle.vim.git ~/.vim/bundle/Vundle.vim
echo "installing Vim plugins"
vim +PluginInstall +qall