🔧 add zed config

This commit is contained in:
James Walker 2025-05-07 16:27:18 -04:00
parent 6185de0a49
commit edee508882
Signed by: walkah
SSH Key Fingerprint: SHA256:f7Gn4jO4BFHZxWfKTTzEAfWz+cLW51IyGFl9MjDyZGI

View File

@ -0,0 +1,37 @@
// 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.
{
"features": {
"edit_prediction_provider": "zed"
},
"agent": {
"default_model": {
"provider": "copilot_chat",
"model": "claude-3-7-sonnet"
},
"version": "2"
},
"auto_install_extensions": {
"dockerfile": true,
"docker-compose": true,
"dracula": true,
"html": true,
"nix": true,
"terraform": true
},
"theme": "Dracula",
"buffer_font_family": "JetBrainsMono Nerd Font",
"buffer_font_size": 14,
"format_on_save": "on",
"languages": {
"Nix": {
"language_servers": ["nixd", "!nil"]
}
}
}