Skip to content

Commit

Permalink
⚙️ Adds Zed files
Browse files Browse the repository at this point in the history
  • Loading branch information
jefftriplett committed Aug 24, 2024
1 parent b0f435b commit 404ef16
Show file tree
Hide file tree
Showing 3 changed files with 445 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -61,3 +61,8 @@ home/bin/.docker-slim-state/
home/bin/docker-slim
home/bin/docker-slim-sensor
home/bin/gam

# zed
.tmp*
home/.config/zed/embeddings/
home/.config/zed/prompts/
45 changes: 45 additions & 0 deletions home/.config/zed/settings.json
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
}
}
}
Loading

0 comments on commit 404ef16

Please sign in to comment.