update zed config

This commit is contained in:
2024-04-11 09:41:06 -04:00
parent 1fce86f6ed
commit bd418d4ee8
2 changed files with 46 additions and 10 deletions
+15
View File
@@ -0,0 +1,15 @@
[
{
"context": "Workspace",
"bindings": {
"cmd-shift-o": "file_finder::Toggle"
}
},
{
"context": "Editor && mode == full",
"bindings": {
"cmd-shift-o": "file_finder::Toggle",
"cmd-p": "outline::Toggle"
}
}
]
+31 -10
View File
@@ -7,26 +7,47 @@
// custom settings, run the `open default settings` command // custom settings, run the `open default settings` command
// from the command palette or from `Zed` application menu. // from the command palette or from `Zed` application menu.
{ {
"telemetry": {
"diagnostics": true,
"metrics": false
},
"assistant": {
"button": false,
"enabled": false
},
"features": { "features": {
"copilot": false "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": { "collaboration_panel": {
"button": false "button": false
}, },
"chat_panel": { "chat_panel": {
"button": false "button": false
}, },
"assistant": { "theme": "Xcode Default Light",
"ui_font_family": "Rec Mono Casual",
"ui_font_size": 15,
"buffer_font_family": "Rec Mono Semicasual",
"buffer_font_size": 14,
"terminal": {
"font_family": "FiraCode Nerd Font Mono"
},
"soft_wrap": "editor_width",
"tabs": {
"close_position": "left"
},
"notification_panel": {
"button": false "button": false
}, },
"tabs": { "git": {
"git_status": true, "git_gutter": "tracked_files"
"close_position": "left" },
"languages": {
"Go": {
"tab_size": 2
}
},
"project_panel": {
"indent_size": 10
} }
} }