diff --git a/Cargo.lock b/Cargo.lock index 20f6fd2994..d3a623f7ef 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3346,6 +3346,7 @@ dependencies = [ "collections", "command_palette_hooks", "ctor", + "dirs 4.0.0", "editor", "fs", "futures 0.3.31", diff --git a/crates/copilot/Cargo.toml b/crates/copilot/Cargo.toml index c859d912b4..234875d420 100644 --- a/crates/copilot/Cargo.toml +++ b/crates/copilot/Cargo.toml @@ -29,6 +29,7 @@ chrono.workspace = true client.workspace = true collections.workspace = true command_palette_hooks.workspace = true +dirs.workspace = true fs.workspace = true futures.workspace = true gpui.workspace = true diff --git a/crates/copilot/src/copilot_chat.rs b/crates/copilot/src/copilot_chat.rs index 119098ef02..54b8217596 100644 --- a/crates/copilot/src/copilot_chat.rs +++ b/crates/copilot/src/copilot_chat.rs @@ -424,12 +424,15 @@ pub fn copilot_chat_config_dir() -> &'static PathBuf { static COPILOT_CHAT_CONFIG_DIR: OnceLock = OnceLock::new(); COPILOT_CHAT_CONFIG_DIR.get_or_init(|| { - if cfg!(target_os = "windows") { - home_dir().join("AppData").join("Local") + let config_dir = if cfg!(target_os = "windows") { + dirs::data_local_dir().expect("failed to determine LocalAppData directory") } else { - home_dir().join(".config") - } - .join("github-copilot") + std::env::var("XDG_CONFIG_HOME") + .map(PathBuf::from) + .unwrap_or_else(|_| home_dir().join(".config")) + }; + + config_dir.join("github-copilot") }) }