speedie-nvim/commit.sh

14 lines
358 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:33:03 +01:00
rm -rf .config/nvim
mkdir -p .config
cp -r $HOME/.config/nvim .config/
rm -f .config/nvim/.session.nvim
mv .config/nvim/lazy-lock.json .config/nvim/.lazy-lock.json
2022-12-19 16:11:28 +01:00
2024-03-04 16:33:03 +01:00
git add .config/* screenshots/ commit.sh install.sh
2022-12-19 16:11:28 +01:00
git commit -a -m "speedie-nvim | Add new config"
git push
fi