mirror of
https://github.com/elkowar/dots-of-war.git
synced 2025-04-05 06:13:31 +00:00
29 lines
731 B
JSON
29 lines
731 B
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 the `open default settings` command
|
|
// from the command palette or from `Zed` application menu.
|
|
{
|
|
"theme": "Gruvbox Dark Hard",
|
|
"buffer_font_size": 15,
|
|
"vim_mode": true,
|
|
"vim": {
|
|
"use_smartcase_find": true,
|
|
"use_system_clipboard": "on_yank"
|
|
},
|
|
"assistant": {
|
|
"version": "1",
|
|
"provider": {
|
|
"name": "openai",
|
|
"type": "openai",
|
|
"default_model": "gpt-3.5-turbo"
|
|
}
|
|
//"provider": {
|
|
// "name": "zed.dev",
|
|
// "default_model": "gpt-3.5-turbo"
|
|
//}
|
|
}
|
|
}
|