first commit

This commit is contained in:
hdvt
2026-03-28 16:48:16 +00:00
commit 0c097ebf97
15478 changed files with 850272 additions and 0 deletions

82
zed/settings.json Normal file
View File

@@ -0,0 +1,82 @@
// 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 `zed: open default settings` from the
// command palette (cmd-shift-p / ctrl-shift-p)
{
"agent": {
"default_model": {
"provider": "google",
"model": "gemini-2.5-pro",
},
"favorite_models": [],
"model_parameters": [],
},
"autosave": {
"after_delay": {
"milliseconds": 500,
},
},
"use_system_path_prompts": false,
"use_system_prompts": false,
"proxy": "http://127.0.0.1:12334",
"ssh_connections": [
{
"host": "192.168.88.253",
"username": "hdvt",
"port": 8841,
"args": [],
"projects": [
{
"paths": ["/home/hdvt/IdeaProjects/tdm-crm/./"],
},
{
"paths": ["/home/hdvt/zed/docker/fluxer/./"],
},
],
},
],
"icon_theme": "Zed (Default)",
"base_keymap": "JetBrains",
"ui_font_size": 16,
"buffer_font_size": 15,
"theme": {
"mode": "dark",
"light": "One Light",
"dark": "GitHub Dark Tritanopia",
},
"lsp": {
"discord_presence": {
"initialization_options": {
"application_id": "1263505205522337886",
"base_icons_url": "https://raw.githubusercontent.com/xhyrom/zed-discord-presence/main/assets/icons/",
"state": "{workspace}",
"details": "",
// URL for the large image
"small_image": "{base_icons_url}/{language:lo}.png", // :lo lowercase the language name
"large_text": "{language:u}", // :u capitalizes the first letter
// URL for the small image
"large_image": "{base_icons_url}/zed.png",
"small_text": "Zed",
// Idle settings - when you're inactive
"idle": {
"timeout": 43234, // Idle timeout in seconds (300 seconds = 5 minutes)
},
"rules": {
"mode": "blacklist", // Can also be "whitelist"
"paths": ["absolute path"],
},
"git_integration": true,
},
},
},
},
}