Feat: New Scripts, new functions

This commit is contained in:
coolnsx
2025-10-22 14:17:33 +05:30
parent 135b8ce642
commit 46ba34c8e5
26 changed files with 469 additions and 353 deletions

View File

@@ -1,11 +1,3 @@
// 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
{
"terminal": {
"dock": "bottom"
@@ -14,19 +6,24 @@
"dock": "right"
},
"features": {
"inline_completion_provider": "none"
"edit_prediction_provider": "none"
},
"ssh_connections": [
{
"host": "se-live",
"projects": [
{
"paths": ["/var/www/qa/student_edge_admin"]
},
{
"paths": ["/var/www/html/student_edge_admin"]
}
]
},
{
"host": "se-gcp",
"projects": [
{
"paths": ["/var/www/qa/student_edge_admin"]
}
]
}
],
"telemetry": {
@@ -35,10 +32,11 @@
},
"soft_wrap": "editor_width",
"ui_font_size": 16,
"buffer_font_size": 14,
"buffer_font_size": 14.0,
"ui_font_family": "IBM Plex Sans",
"buffer_font_family": "Helvetica",
"format_on_save": "off",
"tab_size": 4,
"format_on_save": "on",
"theme": {
"mode": "dark",
"light": "Base16 Monokai",
@@ -46,7 +44,8 @@
},
"languages": {
"PHP": {
"language_servers": ["intelephense", "!phpactor"]
"language_servers": ["intelephense","!phpactor"],
"format_on_save": "off"
}
}
}

View File

@@ -34,6 +34,15 @@
"reveal": "always",
"hide": "never",
"shell": "system"
},
{
"label": "Docker Compose Deploy",
"command": "deploy up --build",
"use_new_terminal": false,
"allow_concurrent_runs": false,
"reveal": "always",
"hide": "never",
"shell": "system"
}
]