33 lines
754 B
JSON
33 lines
754 B
JSON
// 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.
|
|
{
|
|
"features": {
|
|
"copilot": false
|
|
},
|
|
"theme": "Gruvbox Dark Soft",
|
|
"ui_font_family": "Rec Mono Semicasual",
|
|
"buffer_font_family": "Rec Mono Semicasual",
|
|
"ui_font_size": 17,
|
|
"buffer_font_size": 15,
|
|
"tab_size": 2,
|
|
"collaboration_panel": {
|
|
"button": false
|
|
},
|
|
"chat_panel": {
|
|
"button": false
|
|
},
|
|
"assistant": {
|
|
"button": false
|
|
},
|
|
"tabs": {
|
|
"git_status": true,
|
|
"close_position": "left"
|
|
}
|
|
}
|