Created
June 26, 2025 12:11
-
-
Save tinylucid/ae44bf4a9c371b3f81c3c9e65e13b096 to your computer and use it in GitHub Desktop.
Zed settings
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Zed settings | |
// | |
// For information on how to configure Zed, see the Zed | |
// documentation: https://zed.dev/docs/configuring-zed | |
// | |
// To see all of Zed's default settings without changing your | |
// custom settings, run the `open default settings` command | |
// from the command palette or from `Zed` application menu. | |
{ | |
"theme": "Alabaster Dark", | |
"show_inline_suggestions": false, | |
"buffer_font_family": "TX-02", | |
"buffer_line_height": { "custom": 1.3 }, // default being 1.3 | |
"buffer_font_size": 14, | |
"buffer_font_features": { | |
"bold": false, | |
"itallic": false, | |
"calt": false, | |
"liga": false | |
}, | |
"tabs": { "file_icons": true }, | |
"tab_bar": { | |
"show": false | |
}, | |
"ui_font_size": 13, | |
"file_types": { | |
"HLSL": ["slang"] | |
}, | |
"features": { | |
"edit_prediction_provider": "none", | |
"inline_completions": false | |
}, | |
"agent": { | |
"version": "2", | |
"enabled": false, | |
"enable": false, | |
"button": false | |
}, | |
"terminal": { | |
"shell": { | |
"program": "fish" | |
}, | |
// Where to dock terminals panel. Can be 'left', 'right', 'bottom'. | |
"dock": "right" | |
}, | |
"chat_panel": { | |
// Whether to show the collaboration panel button in the status bar. | |
"button": "never" | |
}, | |
"collaboration_panel": { | |
// Whether to show the collaboration panel button in the status bar. | |
"button": false | |
}, | |
"notification_panel": { | |
// Whether to show the notification panel button in the status bar. | |
"button": false | |
}, | |
"git": { | |
"inline_blame": { | |
"enabled": false | |
} | |
}, | |
"outline_panel": { | |
"dock": "right" | |
}, | |
"project_panel": { | |
"dock": "right", | |
"indent_guides": { "show": "never" } | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment