From 3fda31a66aeb0617558e549f12bacb912e0497af Mon Sep 17 00:00:00 2001 From: Lars <134181853+bo2themax@users.noreply.github.com> Date: Sun, 2 Nov 2025 16:03:54 +0100 Subject: [PATCH] skip checking config file --- macos/Sources/Ghostty/Ghostty.Config.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/macos/Sources/Ghostty/Ghostty.Config.swift b/macos/Sources/Ghostty/Ghostty.Config.swift index 86b0ecdb9..c64646e25 100644 --- a/macos/Sources/Ghostty/Ghostty.Config.swift +++ b/macos/Sources/Ghostty/Ghostty.Config.swift @@ -64,7 +64,7 @@ extension Ghostty { // We only do this on macOS because other Apple platforms do not have the // same filesystem concept. #if os(macOS) - if let path, FileManager.default.fileExists(atPath: path) { + if let path { ghostty_config_load_file(cfg, path) } else { ghostty_config_load_default_files(cfg)