// 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, "relative_line_numbers": "disabled", "agent": { "default_model": { "provider": "copilot_chat", "model": "gpt-5-mini" }, "favorite_models": [], "model_parameters": [] }, "edit_predictions": { "mode": "eager", "provider": "copilot" }, "remove_trailing_whitespace_on_save": false, "inline_code_actions": true, "gutter": { "breakpoints": true, "line_numbers": true, }, "drag_and_drop_selection": { "delay": 100, }, "buffer_line_height": "comfortable", "terminal": { "font_family": ".ZedMono", "font_size": 15.0, "detect_venv": "off", }, "show_wrap_guides": true, "title_bar": { "show_sign_in": false, }, "git_panel": { "default_width": 320.0, }, "outline_panel": { "default_width": 320.0, }, "notification_panel": { "dock": "right", }, "debugger": { "dock": "bottom", }, "telemetry": { "diagnostics": false, "metrics": false, }, "base_keymap": "VSCode", "ui_font_size": 16, "buffer_font_features": { "calt": false, // "NWID": true }, "buffer_font_family": "Iosevka Terminal Wide", "project_panel": { "default_width": 320.0, "scrollbar": { "show": "never", }, "entry_spacing": "standard", }, "tab_size": 4, "format_on_save": "off", "ensure_final_newline_on_save": false, // "preferred_line_length": 80, "soft_wrap": "editor_width", "git": { "inline_blame": { "enabled": false, }, }, "collaboration_panel": { "button": false, }, // "vim_mode": true, ////// LSP config ////// "lsp": { "texlab": { "settings": { "texlab": { "build": { "onSave": true, "forwardSearchAfter": false, }, }, }, }, "clangd": { "binary": { "ignore_system_version": true, "path": "/opt/homebrew/opt/llvm/bin/clangd", "arguments": [], }, }, }, "file_types": { "Cython": ["sage"], }, "languages": { "LaTeX": { "show_edit_predictions": false }, "Haskell": { "tab_size": 2, "hard_tabs": false, }, }, "theme_overrides": { "One Light": { "syntax": { "link_text": { "font_style": "normal" } } }, }, }