mirror of
https://github.com/lawrencesystems/dotfiles.git
synced 2024-11-09 23:24:11 -08:00
17 lines
468 B
Bash
Executable file
17 lines
468 B
Bash
Executable file
#!/bin/bash
|
|
for file in $(find . -maxdepth 1 -name ".*" -type f -printf "%f\n" ); do
|
|
if [ -e ~/$file ]; then
|
|
mv -f ~/$file{,.dtbak}
|
|
fi
|
|
ln -s $PWD/$file ~/$file
|
|
done
|
|
if hash vim-addon 2>/dev/null; then
|
|
echo "vim-addon (vim-scripts) installed"
|
|
else
|
|
echo "vim-addon (vim-scripts) not installed, running 'sudo apt update; sudo apt install bc'"
|
|
sudo apt update; sudo apt install vim-scripts
|
|
exit
|
|
fi
|
|
|
|
echo "Installed"
|