update zed config

This commit is contained in:
Alexander Navarro 2026-02-06 17:01:13 -03:00
parent 52460a3cba
commit a7bb860403
2 changed files with 118 additions and 57 deletions

View file

@ -142,6 +142,10 @@
"displayMode": "onhover", "displayMode": "onhover",
"id": "Network" "id": "Network"
}, },
{
"displayMode": "onhover",
"id": "Bluetooth"
},
{ {
"displayMode": "onhover", "displayMode": "onhover",
"id": "Volume", "id": "Volume",

View file

@ -47,6 +47,40 @@
"enabled": true "enabled": true
}, },
"languages": { "languages": {
"SQL": {
"format_on_save": "on",
"formatter": {
"external": {
"command": "sleek"
}
}
},
"Shell Script": {
"format_on_save": "on",
"formatter": {
"external": {
"command": "shfmt",
// Change `--indent 2` to match your preferred tab_size
"arguments": ["--filename", "{buffer_path}", "--indent", "2"]
}
}
},
"sass": {
"language_servers": ["biome"],
"formatter": "language_server",
"code_actions_on_format": {
"source.fixAll.biome": true,
"source.organizeImports.biome": true,
"source.action.useSortedKeys.biome": true
}
},
"python": {
"format_on_save": "on",
"code_actions_on_format": {
"source.organizeImports.ruff": true,
"source.fixAll.ruff": true
}
},
"Lua": { "Lua": {
"inlay_hints": { "inlay_hints": {
"enabled": true, "enabled": true,
@ -236,63 +270,62 @@
"dark": "Catppuccin Macchiato" "dark": "Catppuccin Macchiato"
}, },
"ssh_connections": [ "ssh_connections": [
{ {
"host": "GetDTE-Prod-App", "host": "GetDTE-Prod-App",
"args": [], "args": [],
"projects": [ "projects": [
{ {
"paths": [ "paths": ["/bcn/invoice-chile/scripts"]
"/bcn/invoice-chile/scripts" }
] ]
} },
] {
}, "host": "t-800",
{ "args": [],
"host": "t-800", "projects": [
"args": [], {
"projects": [ "paths": ["/opt/stacks"]
{ }
"paths": [ ],
"/opt/stacks" "nickname": "T-800"
] },
} {
], "host": "getwfr-2-piloto",
"nickname": "T-800" "args": [],
}, "projects": []
{ },
"host": "getwfr-2-piloto", {
"args": [], "host": "saria",
"projects": [] "args": [],
}, "projects": [
{ {
"host": "saria", "paths": ["/opt/stacks"]
"args": [], }
"projects": [ ],
{ "nickname": "Saria"
"paths": [ },
"/opt/stacks" {
] "host": "getwfr-2-prod",
} "args": [],
], "projects": [
"nickname": "Saria" {
}, "paths": ["/bcn/workflow/produccion/php/./"]
{ }
"host": "getwfr-2-prod", ]
"args": [], },
"projects": [ {
{ "host": "GetCPE-Prod",
"paths": [ "args": [],
"/bcn/workflow/produccion/php/./" "projects": [
] {
} "paths": ["/bcn"]
] },
}, {
{ "paths": ["/bcn/getcpe/produccion/./"]
"host": "GetCPE-Prod", }
"args": [], ]
"projects": [] }
} ],
],
"disable_ai": false, "disable_ai": false,
"auto_update": false, "auto_update": false,
"vim_mode": true, "vim_mode": true,
@ -304,6 +337,30 @@
"dark": "Catppuccin Macchiato" "dark": "Catppuccin Macchiato"
}, },
"lsp": { "lsp": {
"tombi": {
"initialization_options": {
"format": {
"rules": {
"indent-sub-tables": true
}
}
}
},
"ruff": {
"initialization_options": {
"settings": {
// Ruff server settings go here
}
}
},
"basedpyright": {
"settings": {
"basedpyright.analysis": {
"typeCheckingMode": "recommended",
"diagnosticMode": "workspace"
}
}
},
"biome": { "biome": {
"enable_lsp_tasks": true, "enable_lsp_tasks": true,
"settings": { "settings": {