Lowercase settings.json for vscode settings importer (#30131)

Peter Tripp created

Closes: https://github.com/zed-industries/zed/issues/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 🔗

@@ -414,7 +414,7 @@ pub fn local_vscode_launch_file_relative_path() -> &'static Path {
 /// Returns the path to the vscode user settings file
 pub fn vscode_settings_file() -> &'static PathBuf {
     static LOGS_DIR: OnceLock<PathBuf> = OnceLock::new();
-    let rel_path = "Code/User/Settings.json";
+    let rel_path = "Code/User/settings.json";
     LOGS_DIR.get_or_init(|| {
         if cfg!(target_os = "macos") {
             home_dir()