mirror of
https://github.com/osmarks/random-stuff
synced 2025-12-27 07:56:05 +00:00
45 lines
1.1 KiB
JSON
45 lines
1.1 KiB
JSON
// 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 `zed: open default settings` from the
|
|
// command palette (cmd-shift-p / ctrl-shift-p)
|
|
{
|
|
"agent": {
|
|
"default_model": {
|
|
"provider": "zed.dev",
|
|
"model": "claude-3-5-sonnet-latest"
|
|
},
|
|
},
|
|
"ui_font_size": 12,
|
|
"buffer_font_weight": 300,
|
|
"buffer_font_size": 12.0,
|
|
"theme": {
|
|
"mode": "dark",
|
|
"light": "One Light",
|
|
"dark": "Ayu Dark"
|
|
},
|
|
"buffer_font_family": "Fira Code",
|
|
"buffer_line_height": { "custom": 1.3 },
|
|
"ui_font_family": "Fira Sans",
|
|
"features": {
|
|
"edit_prediction_provider": "zed"
|
|
},
|
|
"tab_size": 4,
|
|
"format_on_save": "off",
|
|
"inlay_hints": {
|
|
"enabled": true
|
|
},
|
|
"soft_wrap": "editor_width",
|
|
"languages": {
|
|
"Python": {
|
|
"language_servers": [
|
|
"!basedpyright",
|
|
"pyright"
|
|
]
|
|
}
|
|
}
|
|
}
|