speedie-nvim/commit.sh
2022-12-19 16:11:28 +01:00

11 lines
223 B
Bash
Executable file

#!/bin/sh
if [ -e "$HOME/.config/nvim" ]; then
rm -rf .config/nvim
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