dotfiles/zed/settings.json
2025-05-08 16:18:55 +02:00

61 lines
1.3 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)
{
"edit_predictions": {
"mode": "subtle",
"copilot": {
"proxy": null,
"proxy_no_verify": null
},
"enabled_in_assistant": false
},
"show_edit_predictions": true,
"ssh_connections": [
{
"host": "idun",
"projects": [
{
"paths": ["~/thesis/masterproject/code"]
}
]
}
],
"features": {
"edit_prediction_provider": "zed"
},
"assistant": {
"default_model": {
"provider": "copilot_chat",
"model": "claude-3-7-sonnet"
},
"version": "2"
},
"telemetry": {
"metrics": true
},
"vim_mode": true,
"vim": {
"use_system_clipboard": "on_yank",
"use_smartcase_find": true
},
"buffer_font_family": "FiraCode Nerd Font",
"buffer_font_size": 14,
"soft_wrap": "editor_width",
"theme": {
"mode": "system",
"light": "One Light",
"dark": "Tokyo Night"
},
"ui_font_family": ".SystemUIFont",
"languages": {
"Markdown": {
"format_on_save": "on"
}
}
}