mirror of
https://github.com/mikkelsvartveit/dotfiles.git
synced 2025-12-22 19:22:38 +00:00
53 lines
1.1 KiB
JSON
53 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)
|
|
{
|
|
"show_edit_predictions": false,
|
|
"ssh_connections": [
|
|
{
|
|
"host": "idun",
|
|
"projects": [
|
|
{
|
|
"paths": ["~/thesis/masterproject/code"]
|
|
}
|
|
]
|
|
}
|
|
],
|
|
"features": {
|
|
"edit_prediction_provider": "zed"
|
|
},
|
|
"assistant": {
|
|
"default_model": {
|
|
"provider": "zed.dev",
|
|
"model": "claude-3-5-sonnet-latest"
|
|
},
|
|
"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": "One Dark"
|
|
},
|
|
"ui_font_family": ".SystemUIFont",
|
|
"languages": {
|
|
"Markdown": {
|
|
"format_on_save": "on"
|
|
}
|
|
}
|
|
}
|