Created
April 26, 2024 06:44
-
-
Save mkumm/a33d696955e40fb40931c65be8cc23dc to your computer and use it in GitHub Desktop.
This file contains 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 | |
// .config/zed/settings.json | |
// | |
// 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 the `open default settings` command | |
// from the command palette or from `Zed` application menu. | |
{ | |
"show_copilot_suggestions": false, | |
"buffer_font_family": "JetBrainsMono Nerd Font", | |
"format_on_save": "off", | |
"theme": "Rosé Pine Dawn", | |
"buffer_font_size": 13, | |
"terminal": { | |
"font_family": "JetBrainsMono Nerd Font", | |
"font_size": 13, | |
"line_height": "standard", | |
"shell": "system" | |
}, | |
"vim_mode": true, | |
"assistant": { | |
// Version of this setting. | |
"version": "1", | |
// Whether the assistant is enabled. | |
"enabled": true, | |
// Whether to show the assistant panel button in the status bar. | |
"button": true, | |
// Where to dock the assistant panel. Can be 'left', 'right' or 'bottom'. | |
"dock": "right", | |
// Default width when the assistant is docked to the left or right. | |
"default_width": 640, | |
// Default height when the assistant is docked to the bottom. | |
"default_height": 320, | |
// AI provider. | |
"provider": { | |
"name": "openai", | |
// The default model to use when starting new conversations. This | |
// setting can take three values: | |
// | |
// 1. "gpt-3.5-turbo" | |
// 2. "gpt-4" | |
// 3. "gpt-4-turbo-preview" | |
"default_model": "gpt-3.5-turbo" | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment