From 5e72cffe476d35ebf62af72a1997ded55ae497a4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Kr=C3=BCger?= Date: Fri, 19 Jun 2026 18:47:29 +0200 Subject: [PATCH] chore: cleanup --- .zshrc | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/.zshrc b/.zshrc index c8d6b3c..df0fd25 100644 --- a/.zshrc +++ b/.zshrc @@ -34,9 +34,6 @@ source_file() { if [[ -f "$file" && -r "$file" ]]; then source "$file" - else - # Silently skip missing files (common for optional tools) - return 0 fi } @@ -87,7 +84,7 @@ source_files=( # Source zsh-compatible files (skip if missing, no warnings) for config_file in "${source_files[@]}"; do - source_file "$config_file" 2>/dev/null || true + source_file "$config_file" done