Skip to content

Instantly share code, notes, and snippets.

@roelandmoors
Created March 8, 2024 21:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save roelandmoors/5233a5892dc9367f6c1c8b9fc1075e94 to your computer and use it in GitHub Desktop.
Save roelandmoors/5233a5892dc9367f6c1c8b9fc1075e94 to your computer and use it in GitHub Desktop.
Zed config
[
{
"bindings": {
"cmd-t": "workspace::ToggleBottomDock",
"cmd-b": "workspace::ToggleRightDock",
"cmd-r": "project_symbols::Toggle",
"cmd-l": "editor::DuplicateLine",
"cmd-j": "editor::JoinLines"
}
}
// 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.
{
"base_keymap": "vscode",
"vim_mode": true,
"theme": "Ayu Dark",
"buffer_font_size": 14,
"buffer_font_family": "MonoLisa",
"ui_font_family": "PragmataPro Liga",
"features": {
"copilot": false
},
"ui_font_features": {
"calt": true
},
"hover_popover_enabled": false,
"show_completions_on_input": false,
"show_copilot_suggestions": false,
"toolbar": {
"breadcrumbs": false,
"quick_actions": false
},
"gutter": {
"line_numbers": false
},
"vertical_scroll_margin": 5,
"project_panel": {
"dock": "right"
},
"collaboration_panel": {
"button": false
},
"chat_panel": {
"button": false
},
"notification_panel": {
"button": false
},
"assistant": {
"button": false
},
"show_call_status_icon": false
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment