Last active
May 3, 2024 07:34
-
-
Save 3nws/dd65800eab3139e2c1df1a5a6a5fb1e6 to your computer and use it in GitHub Desktop.
Zed config
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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", | |
"telemetry": { | |
"diagnostics": false, | |
"metrics": false | |
}, | |
"theme": "Atelier Seaside Dark", | |
"ui_font_size": 16, | |
"buffer_font_size": 16, | |
"autosave": { | |
"after_delay": { | |
"milliseconds": 1000 | |
} | |
}, | |
"format_on_save": "on", | |
"formatter": "language_server", | |
"git": { | |
"git_gutter": "tracked_files" | |
}, | |
"hour_format": "hour24", | |
"features": { | |
"copilot": false | |
}, | |
"collaboration_panel": { | |
"button": false | |
}, | |
"chat_panel": { | |
"button": false | |
}, | |
"notification_panel": { | |
"button": false | |
}, | |
"assistant": { | |
"button": false | |
}, | |
"tabs": { | |
"git_status": true, | |
"close_position": "left" | |
}, | |
"hard_tabs": true, | |
"soft_wrap": "editor_width", | |
"language_overrides": { | |
"Python": { | |
"formatter": { | |
"external": { | |
"command": "black", | |
"arguments": [ | |
"-" | |
] | |
} | |
} | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment