diff --git a/dotfiles.sh b/dotfiles.sh
index 0e87400..c63bd04 100755
--- a/dotfiles.sh
+++ b/dotfiles.sh
@@ -12,12 +12,12 @@ ignore_files=("README.md" ".git" ".gitmodules")
 create_symlinks() {
     local src_dir="$1"
     local target_dir="$2"
-
     # Create the target directory if it doesn't exist
     mkdir -p "$target_dir"
     
     # For each file
     for file in "$src_dir"/*; do
+        echo "Processing: $file"
         # Get the file name
         local file_name=$(basename "$file")