From 5c7c4dd4dd8c57f7520b08a746d608538e9c32b3 Mon Sep 17 00:00:00 2001 From: Julia Date: Fri, 3 Mar 2023 15:38:24 -0800 Subject: [PATCH] Clean up some default settings --- assets/settings/default.json | 14 -------------- crates/settings/src/settings.rs | 2 -- 2 files changed, 16 deletions(-) diff --git a/assets/settings/default.json b/assets/settings/default.json index 2a5e05b40138053862461f721231e042b2a1cb38..23e8fc09adb799efe6481813fcb593ad641f97ca 100644 --- a/assets/settings/default.json +++ b/assets/settings/default.json @@ -22,11 +22,6 @@ "show_completions_on_input": true, // Whether the screen sharing icon is showed in the os status bar. "show_call_status_icon": true, - // Whether new projects should start out 'online'. Online projects - // appear in the contacts panel under your name, so that your contacts - // can see which projects you are working on. Regardless of this - // setting, projects keep their last online status when you reopen them. - "projects_online_by_default": true, // Whether to use language servers to provide code intelligence. "enable_language_server": true, // When to automatically save edited buffers. This setting can @@ -202,12 +197,6 @@ "Plain Text": { "soft_wrap": "preferred_line_length" }, - "C": { - "tab_size": 2 - }, - "C++": { - "tab_size": 2 - }, "Elixir": { "tab_size": 2 }, @@ -218,9 +207,6 @@ "Markdown": { "soft_wrap": "preferred_line_length" }, - "Rust": { - "tab_size": 4 - }, "JavaScript": { "tab_size": 2 }, diff --git a/crates/settings/src/settings.rs b/crates/settings/src/settings.rs index 6b51b06c9c0e4e3e8617c3bd26a58c7e902ed188..736c9823403aceeac31345ae1f21d64aa2fe177b 100644 --- a/crates/settings/src/settings.rs +++ b/crates/settings/src/settings.rs @@ -274,8 +274,6 @@ impl Column for DockAnchor { #[derive(Clone, Debug, Default, Serialize, Deserialize, JsonSchema)] pub struct SettingsFileContent { - #[serde(default)] - pub projects_online_by_default: Option, #[serde(default)] pub buffer_font_family: Option, #[serde(default)]