From 1c9c34febf8caae8e6a035c9fde4d1a2078d2833 Mon Sep 17 00:00:00 2001 From: Constantin Simonis Date: Mon, 16 Jun 2025 10:32:55 +0200 Subject: [PATCH] chore: update stow ignore and install script logic --- .stow-local-ignore | 1 + install | 4 +++- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/.stow-local-ignore b/.stow-local-ignore index 925e549..496f931 100644 --- a/.stow-local-ignore +++ b/.stow-local-ignore @@ -5,3 +5,4 @@ setup .gitmodules .zshenv.template README.md +.gitconfig.d diff --git a/install b/install index 3c8b91b..386916f 100755 --- a/install +++ b/install @@ -25,7 +25,9 @@ echo echo "[+] Installing Oh My Zsh..." 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"