diff --git a/python/.vscode/settings.json b/python/.vscode/settings.json
index e57ae212aaadebbc510b77fb5b8848d7dfe36906..68cbb8226d26a647bf0566cee50cd28ee6c95792 100644
--- a/python/.vscode/settings.json
+++ b/python/.vscode/settings.json
@@ -12,5 +12,11 @@
     "editor.defaultFormatter": "ms-python.black-formatter", // Use Black formatter for python
     "editor.formatOnType": true
   },
-  "python.analysis.typeCheckingMode": "strict" // or "strict" : use stricter python type checking
+  "python.analysis.typeCheckingMode": "strict", // or "strict" : use stricter python type checking
+
+  // Add explicit hints overlays for arguments, return types, variable types...
+  "python.analysis.inlayHints.functionReturnTypes": true,
+  "python.analysis.inlayHints.variableTypes": true,
+  "python.analysis.inlayHints.pytestParameters": true,
+  "python.analysis.inlayHints.callArgumentNames": "all"
 }