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