my personal dotfiles
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at main 69 lines 1.6 kB view raw
1// Zed settings 2// 3// For information on how to configure Zed, see the Zed 4// documentation: https://zed.dev/docs/configuring-zed 5// 6// To see all of Zed's default settings without changing your 7// custom settings, run `zed: open default settings` from the 8// command palette (cmd-shift-p / ctrl-shift-p) 9{ 10 // practical 11 "terminal": { 12 "shell": "system" 13 }, 14 "gutter": { 15 "line_numbers": true 16 }, 17 "redact_private_values": false, 18 "agent": { 19 "play_sound_when_agent_done": true, 20 "default_profile": "write", 21 "model_parameters": [] 22 }, 23 "autosave": { 24 "after_delay": { 25 "milliseconds": 1000 26 } 27 }, 28 "ensure_final_newline_on_save": true, 29 "remove_trailing_whitespace_on_save": true, 30 "format_on_save": "on", 31 "soft_wrap": "editor_width", 32 33 // ai completions on input 34 "show_completions_on_input": true, 35 "show_edit_predictions": false, 36 37 "inlay_hints": { 38 "enabled": true, 39 "show_type_hints": true, 40 "show_parameter_hints": true, 41 "show_other_hints": true, 42 "show_background": false, 43 "edit_debounce_ms": 700, 44 "scroll_debounce_ms": 50, 45 "toggle_on_modifiers_press": null 46 }, 47 48 // visual 49 "theme": { 50 "mode": "dark", 51 "light": "Gruvbox Light Hard", 52 "dark": "Violet One Dark" 53 }, 54 "icon_theme": { 55 "light": "Zed (Default)", 56 "dark": "Material Icon Theme" 57 }, 58 59 "buffer_font_family": "Geist Mono", 60 "ui_font_family": "Geist Mono", 61 "ui_font_size": 16, 62 "buffer_font_size": 15, 63 64 // telemetry 65 "telemetry": { 66 "diagnostics": false, 67 "metrics": false 68 } 69}