speedie-nvim/commit.sh
2023-03-04 20:04:33 +01:00

12 lines
244 B
Bash
Executable file

#!/bin/sh
if [ -e "$HOME/.config/nvim" ]; then
rm -rf .config/nvim
mkdir -p .config
cp -r $HOME/.config/nvim .config/
git add .config/* commit.sh install.sh
git commit -a -m "speedie-nvim | Add new config"
git push
fi