{ // Global Telemetry Settings "telemetry": { "diagnostics": false, "metrics": false }, // Behaviour "tab_size": 2, "vim_mode": true, "format_on_save": "off", "autosave": "on_focus_change", // Theme / Visual Settings "icon_theme": { "mode": "dark", "light": "Zed (Default)", "dark": "Zed (Default)" }, "theme": { "mode": "dark", "light": "Gruvbox Light", "dark": "Gruvbox Dark Hard" }, "ui_font_size": 16.0, "buffer_font_size": 13.0, "soft_wrap": "editor_width", // Indentation "indent_guides": { "enabled": true, "coloring": "indent_aware" }, // Relative line numbers (vim) "relative_line_numbers": "enabled", // Further Visual Settings "tab_bar": { "show": true }, "scrollbar": { "show": "never" }, // Predictions "show_edit_predictions": false, // Language Settings "languages": { "Go": { "show_edit_predictions": false } }, // File syntax highlight "file_types": { "Dockerfile": ["Dockerfile", "Dockerfile.*"], "JSON": ["json", "jsonc", "*.code-snippets"], }, // Agent / LLM Settings "language_models": { "ollama": { "api_url": "http://localhost:11434", "available_models": [ { "name": "qwen2.5-coder:14b-instruct-q4_0", "display_name": "Qwen2.5 Coder 14B Instruct (Q4_0)", "max_tokens": 32768, "supports_tools": false, "supports_thinking": false } ] } }, "agent": { "default_profile": "write", "default_model": { "provider": "copilot_chat", "model": "gpt-5-mini" }, "model_parameters": [] }, // LLM Inline Prediction "edit_predictions": { "provider": "copilot" }, // LSP Server Settings "lsp": { "texlab": { "settings": { "texlab": { "build": { "onSave": false } } } } } }