dots-of-war/zed/.config/zed/settings.json

60 lines
1.3 KiB
JSON
Raw Normal View History

2024-04-09 10:16:38 +02:00
{
"theme": "Gruvbox Dark Hard",
2024-04-11 11:05:54 +02:00
"buffer_font_size": 14,
"buffer_font_family": "JetBrainsMono Nerd Font Mono",
// "buffer_line_height": { "custom": 1.55 },
// "ui_font_family": "Noto Sans",
// "buffer_font_family": "Zed Mono",
// "active_pane_magnification": 1.3,
2024-04-20 16:40:21 +02:00
"tab_bar": {
"show_nav_history_buttons": false
},
2024-04-11 11:05:54 +02:00
"calls": {
"mute_on_join": true
},
"gutter": {
"line_numbers": false,
"folds": false
},
"vertical_scroll_margin": 5,
"tabs": { "git_status": true },
"terminal": {
"font_family": "JetBrainsMono Nerd Font Mono",
"font_size": 14
},
2024-04-09 10:16:38 +02:00
"vim_mode": true,
"vim": {
"use_smartcase_find": true,
"use_system_clipboard": "on_yank"
},
2024-04-20 16:40:21 +02:00
"languages": {
"JSON": {
"format_on_save": "off"
}
},
2024-04-09 10:16:38 +02:00
"assistant": {
"version": "1",
"provider": {
"name": "openai",
"type": "openai",
2024-04-20 16:40:21 +02:00
"default_model": "gpt-3.5-turbo",
// "default_model": "anthropic/claude-3-haiku",
2024-04-24 12:49:11 +02:00
//"api_url": "http://localhost:4444",
2024-04-20 16:40:21 +02:00
//"api_url": "https://openrouter.ai/api/v1",
2024-04-09 10:16:38 +02:00
}
2024-04-20 16:40:21 +02:00
// "provider": {
// "name": "openai",
// "type": "openai",
// "default_model": "gpt-3.5-turbo"
// }
2024-04-09 10:16:38 +02:00
//"provider": {
// "name": "zed.dev",
// "default_model": "gpt-3.5-turbo"
//}
}
}