chore: update stow ignore and install script logic

This commit is contained in:
2025-06-16 10:32:55 +02:00
parent 2f470523ec
commit 1c9c34febf
2 changed files with 4 additions and 1 deletions

View File

@ -5,3 +5,4 @@ setup
.gitmodules .gitmodules
.zshenv.template .zshenv.template
README.md README.md
.gitconfig.d

View File

@ -25,7 +25,9 @@ echo
echo "[+] Installing Oh My Zsh..." echo "[+] Installing Oh My Zsh..."
echo echo
sh -c "$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)" if [ ! -d "$HOME/.oh-my-zsh" ]; then
sh -c "$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"
fi
echo "Include $HOME/.config/ssh/*" >> "$HOME/.ssh/config" echo "Include $HOME/.config/ssh/*" >> "$HOME/.ssh/config"