Skip to content

Instantly share code, notes, and snippets.

@oliverservin
Created October 11, 2024 13:18
Show Gist options
  • Save oliverservin/6a97ea11f228cdf057e1ba850c4eb32c to your computer and use it in GitHub Desktop.
Save oliverservin/6a97ea11f228cdf057e1ba850c4eb32c to your computer and use it in GitHub Desktop.
Zed settings file
// 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.
{
"assistant": {
"default_model": {
"provider": "openai",
"model": "gpt-3.5-turbo"
},
"version": "2"
},
"vim_mode": false,
"features": {
"inline_completion_provider": "none",
"copilot": false
},
"theme": "Quill",
// "base_keymap": "SublimeText",
"telemetry": {
"diagnostics": false,
"metrics": false
},
"project_panel": {
"dock": "right"
},
"collaboration_panel": {
"dock": "right"
},
"outline_panel": {
"dock": "right"
},
"buffer_font_family": "MonoLisa",
// "buffer_line_height": {
// "custom": 2
// },
// "ui_font_size": 18,
"buffer_font_size": 16,
"gutter": {
"line_numbers": false
},
"languages": {
"PHP": {
"language_servers": ["intelephense", "!phpactor", "..."],
"formatter": {
"external": {
"command": "node_modules/.bin/prettier",
"arguments": ["--stdin-filepath", "{buffer_path}"]
}
},
"format_on_save": "off"
}
},
"indent_guides": {
"enabled": false
},
"tab_bar": {
"show": false
},
"toolbar": {
"breadcrumbs": true,
"quick_actions": false
},
"soft_wrap": "prefer_line"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment