Skip to content

Instantly share code, notes, and snippets.

@herminiotorres
Created October 6, 2023 14:52
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 herminiotorres/ae22a085620e30ff67005e8be58fe708 to your computer and use it in GitHub Desktop.
Save herminiotorres/ae22a085620e30ff67005e8be58fe708 to your computer and use it in GitHub Desktop.
Zed Configuration Settings
// 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": "Ayu Mirage",
"features": {
"copilot": false
},
"buffer_font_features": {
"calt": false
},
"buffer_font_size": 15,
"confirm_quit": true,
"show_copilot_suggestions": false,
"collaboration_panel": {
"button": false
},
"assistant": {
"button": false
},
"tabs": {
"git_status": true,
"close_position": "right"
},
"preferred_line_length": 120,
"tab_size": 2,
"telemetry": {
"diagnostics": false,
"metrics": false
},
"journal": {
"path": "~",
"hour_format": "hour24"
},
"hour_format": "hour24",
"working_directory": {
"always": {
"directory": "~/Workspace/"
}
},
"elixir": {
"lsp": "null"
},
"language_overrides": {
"Elixir": {
"format_on_save": {
"external": {
"command": "mix",
"arguments": ["format", "--stdin-filename", "{buffer_path}", "-"]
}
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment