Last active
September 22, 2025 12:19
-
-
Save bkataru/aea77ac809a1e08209ca2139bd42806b to your computer and use it in GitHub Desktop.
zed settings
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
Show hidden 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) | |
| { | |
| "language_models": { | |
| "openai": { | |
| "api_url": null, | |
| "available_models": [ | |
| { | |
| "name": "moonshotai/kimi-k2-instruct", | |
| "max_tokens": 1000 | |
| } | |
| ] | |
| } | |
| }, | |
| // "context_servers": {}, | |
| "tab_bar": { | |
| "show": true | |
| }, | |
| "icon_theme": "Catppuccin Frappé", | |
| "agent": { | |
| "default_profile": "ask", | |
| "default_model": { | |
| "provider": "copilot_chat", | |
| "model": "gpt-5" | |
| }, | |
| "model_parameters": [ | |
| { | |
| "provider": "openai", | |
| "model": "moonshotai/kimi-k2-instruct", | |
| "temperature": 0.1 | |
| } | |
| ] | |
| }, | |
| "features": { | |
| "edit_prediction_provider": "zed" | |
| }, | |
| "ui_font_family": "JetBrainsMono Nerd Font", | |
| "buffer_font_family": "JetBrainsMono Nerd Font", | |
| "ui_font_size": 16, | |
| "buffer_font_size": 14.0, | |
| "terminal": { | |
| "font_size": 14 | |
| }, | |
| "theme": { | |
| "mode": "system", | |
| "light": "One Light", | |
| "dark": "Iron Man Dark" | |
| }, | |
| "languages": { | |
| "Zig": { | |
| "format_on_save": "language_server", | |
| "language_servers": ["zls"], | |
| "code_actions_on_format": { | |
| "source.organizeImports": true | |
| } | |
| }, | |
| "JavaScript": { | |
| "format_on_save": "on", | |
| "formatter": { "language_server": { "name": "biome" } }, | |
| "code_actions_on_format": { | |
| "source.fixAll.biome": true, | |
| "source.organizeImports.biome": true | |
| } | |
| }, | |
| "TypeScript": { | |
| "format_on_save": "on", | |
| "formatter": { "language_server": { "name": "biome" } }, | |
| "code_actions_on_format": { | |
| "source.fixAll.biome": true, | |
| "source.organizeImports.biome": true | |
| } | |
| }, | |
| "TSX": { | |
| "format_on_save": "on", | |
| "formatter": { "language_server": { "name": "biome" } }, | |
| "code_actions_on_format": { | |
| "source.fixAll.biome": true, | |
| "source.organizeImports.biome": true | |
| } | |
| } | |
| }, | |
| "lsp": { | |
| "zls": { | |
| "settings": { | |
| "zls": { | |
| "enable_build_on_save": true | |
| } | |
| } | |
| } | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment