migrate dotfiles to chezmoi

This commit is contained in:
Daniel Bauer
2025-07-06 16:21:42 +02:00
parent 20a061820e
commit 25e0d0460b
76 changed files with 77 additions and 9533 deletions

View File

@@ -0,0 +1,15 @@
#!/bin/bash
set -e
echo "Installing packages"
sudo apt update -qq
for package in git neovim git ripgrep; do
if dpkg -s "$package" >/dev/null 2>&1; then
echo $package is already installed.
else
echo Installing $package
sudo apt install -y $package
fi
done