Skip to content

Instantly share code, notes, and snippets.

@hyunbinseo
Created December 1, 2025 01:58
Show Gist options
  • Select an option

  • Save hyunbinseo/f8a6fc278f500014fcdceef0bc4d43d8 to your computer and use it in GitHub Desktop.

Select an option

Save hyunbinseo/f8a6fc278f500014fcdceef0bc4d43d8 to your computer and use it in GitHub Desktop.
Zed Configuration
[
{
"bindings": {
"alt-shift-i": "editor::SplitSelectionIntoLines",
"ctrl-alt-up": "editor::AddSelectionAbove",
"ctrl-alt-down": "editor::AddSelectionBelow"
}
},
{
"context": "Editor && edit_prediction_conflict",
"bindings": {
// "": "editor::AcceptEditPrediction"
}
}
]
{
"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