Fix VS Code settings file location on Linux (#31242)

ADmad created

Refs #30117

Release Notes:

- N/A

Change summary

crates/paths/src/paths.rs | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

Detailed changes

crates/paths/src/paths.rs 🔗

@@ -435,7 +435,7 @@ pub fn vscode_settings_file() -> &'static PathBuf {
                 .join("Library/Application Support")
                 .join(rel_path)
         } else {
-            config_dir().join(rel_path)
+            home_dir().join(".config").join(rel_path)
         }
     })
 }