speedie-nvim/commit.sh

10 lines
165 B
Bash
Raw Normal View History

2022-12-19 16:11:28 +01:00
#!/bin/sh
if [ -e "$HOME/.config/nvim" ]; then
2024-03-04 16:20:19 +01:00
cp -r $HOME/.config/nvim/* .
2022-12-19 16:11:28 +01:00
2024-03-04 16:20:19 +01:00
git add *
2022-12-19 16:11:28 +01:00
git commit -a -m "speedie-nvim | Add new config"
git push
fi