Compare commits

...

2 Commits

Author SHA1 Message Date
Damian Goeldi 0f4fab08a5 added init and recursive to git submodule update 2024-03-13 12:44:44 +01:00
z0rc e3a743b4d4 added update-vim.sh script 2024-03-13 12:31:49 +01:00
2 changed files with 10 additions and 0 deletions

View File

@ -10,3 +10,4 @@ sudo "${script_dir}/update-apt.sh"
"${script_dir}/update-fw.sh"
"${script_dir}/update-flatpak.sh"
"${script_dir}/update-mamba.sh"
"${script_dir}/update-vim.sh"

9
update-scripts/update-vim.sh Executable file
View File

@ -0,0 +1,9 @@
#!/bin/bash
set -eEuxo pipefail
cd ~/.vim/pack/git
git submodule update --init --recursive --remote
git commit -m "automagic update"