Created
December 1, 2025 01:58
-
-
Save hyunbinseo/f8a6fc278f500014fcdceef0bc4d43d8 to your computer and use it in GitHub Desktop.
Zed Configuration
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [ | |
| { | |
| "bindings": { | |
| "alt-shift-i": "editor::SplitSelectionIntoLines", | |
| "ctrl-alt-up": "editor::AddSelectionAbove", | |
| "ctrl-alt-down": "editor::AddSelectionBelow" | |
| } | |
| }, | |
| { | |
| "context": "Editor && edit_prediction_conflict", | |
| "bindings": { | |
| // "": "editor::AcceptEditPrediction" | |
| } | |
| } | |
| ] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "agent": { | |
| "default_profile": "write", | |
| "inline_assistant_model": { | |
| "provider": "google", | |
| "model": "gemini-2.5-flash" | |
| }, | |
| "default_model": { | |
| "provider": "copilot_chat", | |
| "model": "claude-sonnet-4.5" | |
| } | |
| }, | |
| "theme": { | |
| "mode": "system", | |
| "light": "Ayu Light", | |
| "dark": "Ayu Dark" | |
| }, | |
| "file_types": { | |
| "plaintext": ["_redirects"] | |
| }, | |
| "base_keymap": "VSCode", | |
| "buffer_font_family": "구름 산스 코드 400", | |
| "format_on_save": "on", | |
| "ensure_final_newline_on_save": true, | |
| "hard_tabs": true, | |
| "tab_size": 2, | |
| "languages": { | |
| "Markdown": { | |
| "hard_tabs": false | |
| }, | |
| "Svelte": { | |
| "formatter": [ | |
| { "code_action": "source.organizeImports" }, | |
| { "code_action": "source.fixAll.eslint" }, | |
| "prettier" | |
| ] | |
| }, | |
| "JavaScript": { | |
| "formatter": [ | |
| { "code_action": "source.organizeImports" }, | |
| { "code_action": "source.fixAll.eslint" }, | |
| "prettier" | |
| ] | |
| }, | |
| "TypeScript": { | |
| "formatter": [ | |
| { "code_action": "source.organizeImports" }, | |
| { "code_action": "source.fixAll.eslint" }, | |
| "prettier" | |
| ] | |
| } | |
| }, | |
| "telemetry": { | |
| "diagnostics": false, | |
| "metrics": false | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment