Created
May 14, 2025 15:00
-
-
Save kshitij10496/864342b70b43685910d20fce26452aa4 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
// 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) | |
{ | |
"vim_mode": false, | |
"base_keymap": "VSCode", | |
"edit_predictions": { | |
"mode": "eager", | |
"copilot": { | |
"proxy": null, | |
"proxy_no_verify": null | |
}, | |
"enabled_in_text_threads": false | |
}, | |
"agent": { | |
"always_allow_tool_actions": true, | |
"profiles": { | |
"ask": { | |
"name": "Ask", | |
"tools": { | |
"contents": true, | |
"diagnostics": true, | |
"fetch": true, | |
"list_directory": true, | |
"now": true, | |
"find_path": true, | |
"read_file": true, | |
"open": true, | |
"grep": true, | |
"thinking": true, | |
"web_search": true | |
}, | |
"enable_all_context_servers": false, | |
"context_servers": { | |
"mcp-server-shopify-dev": { | |
"tools": { | |
"search_dev_docs": true, | |
"introspect_admin_schema": true | |
} | |
} | |
} | |
} | |
}, | |
"default_profile": "write", | |
"inline_assistant_model": { | |
"provider": "anthropic", | |
"model": "claude-3-7-sonnet-latest" | |
}, | |
"default_model": { | |
"provider": "anthropic", | |
"model": "claude-3-7-sonnet-latest" | |
}, | |
"version": "2" | |
}, | |
"features": { | |
"edit_prediction_provider": "zed" | |
}, | |
"ui_font_size": 16, | |
"theme": { | |
"mode": "system", | |
"dark": "One Dark", | |
"light": "Catppuccin Latte" | |
}, | |
"icon_theme": { | |
"mode": "system", | |
"dark": "Catppuccin Mocha", | |
"light": "Catppuccin Latte" | |
}, | |
"show_whitespaces": "all", | |
// Retina !! Only works with FiraCode-VF.ttf installed, see below when using separated font files (the normal case). | |
// "buffer_font_weight": 450, | |
"buffer_font_family": "Fira Code", | |
"buffer_font_features": { | |
"calt": true | |
}, | |
"tab_bar": { | |
"show": true | |
}, | |
"scrollbar": { | |
"show": "never" | |
}, | |
// Indentation, rainbow indentation | |
"indent_guides": { | |
"enabled": true, | |
"coloring": "indent_aware" | |
}, | |
// Inlay hints preconfigured by Zed: Go, Rust, Typescript and Svelte | |
"inlay_hints": { | |
"enabled": true | |
}, | |
"cursor_shape": "block", | |
"tabs": { | |
"close_position": "right", | |
"file_icons": true, | |
"git_status": false, | |
"activate_on_close": "history", | |
"show_close_button": "hover", | |
// Show error | |
"show_diagnostics": "errors" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment