Removed Collab and Chat panel buttons; Added different display settings; Switched to "Indigo | Clear" dark theme.

This commit is contained in:
Cutieguwu
2025-04-26 12:43:57 -04:00
parent 334f0b406d
commit 67160327a8

View File

@@ -7,17 +7,25 @@
// custom settings, run `zed: open default settings` from the // custom settings, run `zed: open default settings` from the
// command palette (cmd-shift-p / ctrl-shift-p) // command palette (cmd-shift-p / ctrl-shift-p)
{ {
// 1920x1080 (16:9) 100%
//
"ui_font_size": 15,
"buffer_font_size": 13,
// 2560x1600 (16:10) 115%
//
// "ui_font_size": 19,
// "buffer_font_size": 17,
"telemetry": { "telemetry": {
"diagnostics": true, "diagnostics": true,
"metrics": false, "metrics": false
}, },
"ui_font_size": 16,
"buffer_font_size": 13,
"icon_theme": "Colored Zed Icons Theme Dark", "icon_theme": "Colored Zed Icons Theme Dark",
"theme": { "theme": {
"mode": "system", "mode": "system",
"light": "One Light", "light": "One Light",
"dark": "One Dark", "dark": "Indigo | Clear"
}, },
"restore_on_startup": "last_workspace", "restore_on_startup": "last_workspace",
"soft_wrap": "preferred_line_length", "soft_wrap": "preferred_line_length",
@@ -25,28 +33,36 @@
// Remove AI Crap // Remove AI Crap
"features": { "features": {
"edit_prediction_provider": "none", "edit_prediction_provider": "none",
"copilot": false, "copilot": false
}, },
"assistant": { "assistant": {
"version": "1", "version": "1",
"enabled": false, "enabled": false
},
// Remove collab stuff
"collaboration_panel": {
"button": false
},
"chat_panel": {
"button": "never"
}, },
// Language Overrides // Language Overrides
"languages": { "languages": {
"Python": { "Python": {
"show_wrap_guides": true, "show_wrap_guides": true,
"preferred_line_length": 80, "preferred_line_length": 80
}, },
"Rust": { "Rust": {
"show_wrap_guides": true, "show_wrap_guides": true,
"preferred_line_length": 100, "preferred_line_length": 100
}, },
"JSON": { "JSON": {
"tab_size": 4, "tab_size": 4
}, },
"JSONC": { "JSONC": {
"tab_size": 4, "tab_size": 4
}, }
}, }
} }