mirror of https://github.com/einverne/dotfiles.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
710 B
21 lines
710 B
#!/bin/bash |
|
VIMDIR=${1:-$HOME} |
|
|
|
echo "start install, all of your old .vimrc and .vim will be overwritten." |
|
echo "all your old vim settings will be mv to .vimrc.old & .vim.old" |
|
echo -en "Do you want to continue?[y/n]" |
|
read -n 1 use_vim_configs |
|
if [ "$use_vim_configs" == "Y" ] || [ "$use_vim_configs" == "y" ]; then |
|
if [ -d "$VIMDIR/.vim" ]; then |
|
mv $VIMDIR/.vim $VIMDIR/.vim.old |
|
echo "origin .vim directory has been moved to .vim.old" |
|
fi |
|
if [ -f "$VIMDIR/.vimrc" ]; then |
|
mv $VIMDIR/.vimrc $VIMDIR/.vimrc.old |
|
echo "origin .vimrc has been moved to .vimrc.old" |
|
fi |
|
ln -s $PWD/.vim $VIMDIR/.vim 2> /dev/null |
|
ln -s $PWD/.vimrc $VIMDIR/.vimrc 2> /dev/null |
|
fi |
|
|
|
git submodule init && git submodule update
|
|
|