-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
b0f435b
commit 404ef16
Showing
3 changed files
with
445 additions
and
0 deletions.
There are no files selected for viewing
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
// 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 the `open default settings` command | ||
// from the command palette or from `Zed` application menu. | ||
{ | ||
"assistant": { | ||
"version": "2", | ||
"default_model": { | ||
"provider": "zed.dev", | ||
"model": "claude-3-5-sonnet-20240620" | ||
} | ||
}, | ||
"language_models": { | ||
"ollama": { | ||
// "api_url": "https://mac-studio-2023.tail7129b.ts.net/v1" | ||
// "api_url": "http://mac-studio-2023:11434/v1" | ||
"api_url": "http://localhost:11434/v1" | ||
}, | ||
"openai": { | ||
"version": "1", | ||
"api_url": "http://localhost:11434/v1", | ||
"low_speed_timeout_in_seconds": 30 | ||
} | ||
}, | ||
"theme": "Dracula", | ||
"telemetry": { | ||
"metrics": false | ||
}, | ||
"ui_font_size": 16, | ||
"buffer_font_size": 16, | ||
"languages": { | ||
"HTML": { | ||
"tab_size": 2, | ||
"hard_tabs": false | ||
}, | ||
"Python": { | ||
"tab_size": 4, | ||
"hard_tabs": false | ||
} | ||
} | ||
} |
Oops, something went wrong.