my_config/add_vim

14 lines
408 B
Plaintext
Raw Normal View History

2023-04-30 13:37:26 +02:00
#!/bin/zsh
#
SCRIPTPATH="$( cd -- "$(dirname "$0")" >/dev/null 2>&1 ; pwd -P )"
if [[ (-e ~/.vimrc || -e ~/.vim/skeletons) ]]; then
echo "A vim configuration already exists (~/.vimrc or ~/.vim/skeletons)"
echo "Remove this configuration and start the script again"
else
echo "Creating base links"
ln -vs $SCRIPTPATH/.vimrc ~/.vimrc
ln -vs $SCRIPTPATH/.vim/skeletons ~/.vim/skeletons
fi