Config and setup files

edit zed settings

finxol.io c899fab3 e67e526e

verified
Changed files
+43 -16
.config
+43 -16
.config/zed/settings.json
··· 5 5 // custom settings, run the `open default settings` command 6 6 // from the command palette or from `Zed` application menu. 7 7 { 8 + "git": { 9 + "inline_blame": { 10 + "show_commit_summary": false 11 + } 12 + }, 13 + "calls": { 14 + "mute_on_join": true 15 + }, 16 + "title_bar": { 17 + "show_branch_icon": true 18 + }, 8 19 "ssh_connections": [ 9 - { 10 - "host": "akhaten", 11 - "projects": [ 12 20 { 13 - "paths": [ 14 - "/srv/http" 15 - ] 21 + "host": "akhaten", 22 + "args": [], 23 + "projects": [ 24 + { 25 + "paths": ["/pds"] 26 + }, 27 + { 28 + "paths": ["/srv/http"] 29 + } 30 + ] 31 + }, 32 + { 33 + "host": "gallifrey", 34 + "args": [], 35 + "projects": [ 36 + { 37 + "paths": ["/srv/http"] 38 + }, 39 + { 40 + "paths": ["/srv/http/smallweb"] 41 + }, 42 + { 43 + "paths": ["/srv/http/smallweb/data"] 44 + } 45 + ] 16 46 } 17 - ] 18 - }, 19 - { 20 - "host": "gallifrey", 21 - "projects": [] 22 - } 23 - ], 47 + ], 24 48 "edit_predictions": { 25 49 "disabled_globs": ["*.config.*"], 26 50 "mode": "subtle", ··· 30 54 }, 31 55 "enabled_in_text_threads": false 32 56 }, 33 - "language_servers": ["!biome"], 57 + "language_servers": ["!biome", "..."], 34 58 "languages": { 35 59 "TypeScript": { 36 60 "language_servers": ["vtls"], ··· 57 81 "edit_prediction_provider": "zed" 58 82 }, 59 83 "agent": { 84 + "default_profile": "write", 60 85 "button": false, 86 + "use_modifier_to_send": true, 61 87 "inline_assistant_model": { 62 88 "provider": "zed.dev", 63 89 "model": "claude-sonnet-4-latest" 64 90 }, 65 91 "default_model": { 66 - "provider": "zed.dev", 67 - "model": "claude-opus-4-1-thinking" 92 + "provider": "copilot_chat", 93 + "model": "claude-3.5-sonnet" 68 94 } 69 95 }, 70 96 "autosave": "on_focus_change", ··· 97 123 } 98 124 }, 99 125 "tab_size": 4, 126 + "use_system_window_tabs": true, 100 127 "file_types": { 101 128 "Haskell": ["idr"] 102 129 },