Created
December 24, 2024 15:08
-
-
Save bitcode/95cbe5cd6da21669d25cba1cf1a1d47b to your computer and use it in GitHub Desktop.
Zed Editor 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
| { | |
| "buffer_font_family": "JetBrainsMono Nerd Font", | |
| "buffer_font_size": 14, | |
| "ui_font_family": "JetBrainsMono Nerd Font", | |
| "ui_font_size": 14, | |
| "theme": { | |
| "mode": "system", | |
| "light": "One Light", | |
| "dark": "Gruvbox Dark Hard" | |
| }, | |
| "assistant": { | |
| "default_model": { | |
| "provider": "anthropic", | |
| "model": "claude-3-5-sonnet-latest" | |
| }, | |
| "version": "2" | |
| }, | |
| "language_models": { | |
| "google": { | |
| "version": "1", | |
| "available_models": [ | |
| { | |
| "name": "gemini-2.0-flash-exp", | |
| "display_name": "Gemini 2.0 Flash", | |
| "max_tokens": 1048576 | |
| } | |
| ] | |
| } | |
| }, | |
| "keybindings": [ | |
| { | |
| "key": "cmd+f", | |
| "command": "editor.find" | |
| }, | |
| { | |
| "key": "cmd+shift+f", | |
| "command": "workbench.search" | |
| } | |
| ] | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment