title_bar.show_sign_in disables the sign in button, which is shown by default and serves no purpose without a Zed account. Panel layout: project, outline, collaboration and git panels dock to the right; the agent panel docks left. Icon theme changed from Zed (Default) to Material Icon Theme. Note this requires the Material Icon Theme extension to be installed; Zed falls back to the default icons if it is absent, so a fresh machine linking these dotfiles will not error.
92 lines
2.1 KiB
JSON
92 lines
2.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)
|
|
{
|
|
"project_panel": {
|
|
"dock": "right"
|
|
},
|
|
"outline_panel": {
|
|
"dock": "right"
|
|
},
|
|
"collaboration_panel": {
|
|
"dock": "right"
|
|
},
|
|
"git_panel": {
|
|
"dock": "right"
|
|
},
|
|
"edit_predictions": {
|
|
"allow_data_collection": "no",
|
|
"provider": "open_ai_compatible_api",
|
|
"open_ai_compatible_api": {
|
|
"prompt_format": "qwen",
|
|
"max_output_tokens": 100,
|
|
"model": "coder-fast",
|
|
"api_url": "http://10.250.50.70:4141/v1/completions"
|
|
}
|
|
},
|
|
"disable_ai": false,
|
|
"agent": {
|
|
"dock": "left",
|
|
"profiles": {
|
|
|
|
},
|
|
"default_model": {
|
|
"provider": "PFI-LiteLLM",
|
|
"model": "gen"
|
|
},
|
|
"inline_assistant_model": {
|
|
"provider": "PFI-LiteLLM",
|
|
"model": "gen"
|
|
},
|
|
"show_turn_stats": true,
|
|
"favorite_models": [],
|
|
"model_parameters": [],
|
|
"auto_compact": {
|
|
"threshold": "90%"
|
|
}
|
|
},
|
|
"buffer_font_family": "VictorMono Nerd Font",
|
|
"ui_font_family": ".ZedSans",
|
|
"language_models": {
|
|
"openai_compatible": {
|
|
"PFI-LiteLLM": {
|
|
"api_url": "http://10.250.50.70:4000/v1",
|
|
"available_models": [
|
|
{
|
|
"name": "gen",
|
|
"max_tokens": 200000,
|
|
"max_output_tokens": 32000,
|
|
"max_completion_tokens": 200000,
|
|
"capabilities": {
|
|
"tools": true,
|
|
"images": true,
|
|
"parallel_tool_calls": false,
|
|
"prompt_cache_key": false,
|
|
"chat_completions": true,
|
|
"interleaved_reasoning": false,
|
|
"max_tokens_parameter": false
|
|
}
|
|
}
|
|
]
|
|
}
|
|
}
|
|
},
|
|
"vim_mode": false,
|
|
"title_bar": {
|
|
"show_sign_in": false
|
|
},
|
|
"icon_theme": "Material Icon Theme",
|
|
"ui_font_size": 16.0,
|
|
"buffer_font_size": 15,
|
|
"theme": {
|
|
"mode": "dark",
|
|
"light": "One Light",
|
|
"dark": "Australis Dark",
|
|
},
|
|
}
|