2024-09-30 09:11:29 +00:00
|
|
|
// 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.
|
|
|
|
{
|
|
|
|
"theme": "Gruvbox Dark Hard",
|
|
|
|
"buffer_font_family": "Cascadia Code",
|
|
|
|
"buffer_font_features": {
|
|
|
|
"liga": true,
|
|
|
|
"calt": true
|
|
|
|
},
|
2024-09-30 09:15:09 +00:00
|
|
|
"assistant": {
|
|
|
|
"default_model": {
|
2024-10-02 16:56:01 +00:00
|
|
|
"provider": "copilot_chat",
|
|
|
|
"model": "gpt-4o"
|
2024-09-30 09:15:09 +00:00
|
|
|
},
|
|
|
|
"version": "2"
|
|
|
|
},
|
2024-10-02 16:56:01 +00:00
|
|
|
"preview_tabs": {
|
|
|
|
"enable_preview_from_code_navigation": true
|
|
|
|
},
|
2024-09-30 09:15:09 +00:00
|
|
|
"features": {
|
|
|
|
"copilot": true
|
|
|
|
},
|
2024-09-30 09:11:29 +00:00
|
|
|
"languages": {
|
|
|
|
"CSharp": {
|
|
|
|
"show_copilot_suggestions": true
|
|
|
|
},
|
2024-10-02 16:56:01 +00:00
|
|
|
"proto": {
|
|
|
|
"language_servers": ["proto"]
|
|
|
|
},
|
2024-09-30 09:11:29 +00:00
|
|
|
"Go": {
|
|
|
|
"inlay_hints": {
|
|
|
|
"enabled": true,
|
|
|
|
"show_type_hints": false
|
|
|
|
},
|
|
|
|
"preferred_line_length": 140,
|
|
|
|
"language_servers": ["gopls", "golangci-lint"]
|
2024-09-30 09:15:09 +00:00
|
|
|
},
|
|
|
|
"Elixir": {
|
|
|
|
"language_servers": ["!lexical", "!elixir-ls", "next-ls"]
|
|
|
|
},
|
|
|
|
"HEEX": {
|
|
|
|
"language_servers": ["!lexical", "!elixir-ls", "next-ls"]
|
2024-09-30 09:11:29 +00:00
|
|
|
}
|
|
|
|
},
|
|
|
|
"telemetry": {
|
|
|
|
"diagnostics": false,
|
|
|
|
"metrics": false
|
|
|
|
},
|
|
|
|
"ui_font_size": 14,
|
|
|
|
"buffer_font_size": 12.5,
|
|
|
|
"lsp": {
|
2024-10-02 16:56:01 +00:00
|
|
|
"omnisharp": {
|
|
|
|
"initialization_options": {}
|
|
|
|
},
|
2024-09-30 09:11:29 +00:00
|
|
|
"golangci-lint": {
|
|
|
|
"initialization_options": {
|
|
|
|
"command": [
|
|
|
|
"golangci-lint",
|
|
|
|
"run",
|
|
|
|
"--out-format",
|
|
|
|
"json",
|
|
|
|
"--issues-exit-code=1"
|
|
|
|
]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"terminal": {
|
|
|
|
"font_size": 12,
|
|
|
|
"font_family": "Hasklug Nerd Font"
|
|
|
|
}
|
|
|
|
}
|