Fix Dotfiles Stow-Pakete: an dotfiles-rene Struktur anpassen

nvim, oh-my-zsh, micro, bin, heic-scripts statt zsh, nvim, git, ssh
This commit is contained in:
rene 2026-03-07 16:50:26 +01:00
parent d6af10d780
commit a62a8a9781

View file

@ -63,7 +63,7 @@ if [[ ! -d ~/dotfiles ]]; then
git clone "$DOTFILES_REPO" ~/dotfiles
fi
cd ~/dotfiles
for pkg in zsh nvim git ssh; do
for pkg in nvim oh-my-zsh micro bin heic-scripts; do
[[ -d "$pkg" ]] && stow "$pkg" && ok "Dot-Files: $pkg"
done
cd ~