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,
@ -241,9 +275,7 @@
"args": [], "args": [],
"projects": [ "projects": [
{ {
"paths": [ "paths": ["/bcn/invoice-chile/scripts"]
"/bcn/invoice-chile/scripts"
]
} }
] ]
}, },
@ -252,9 +284,7 @@
"args": [], "args": [],
"projects": [ "projects": [
{ {
"paths": [ "paths": ["/opt/stacks"]
"/opt/stacks"
]
} }
], ],
"nickname": "T-800" "nickname": "T-800"
@ -269,9 +299,7 @@
"args": [], "args": [],
"projects": [ "projects": [
{ {
"paths": [ "paths": ["/opt/stacks"]
"/opt/stacks"
]
} }
], ],
"nickname": "Saria" "nickname": "Saria"
@ -281,16 +309,21 @@
"args": [], "args": [],
"projects": [ "projects": [
{ {
"paths": [ "paths": ["/bcn/workflow/produccion/php/./"]
"/bcn/workflow/produccion/php/./"
]
} }
] ]
}, },
{ {
"host": "GetCPE-Prod", "host": "GetCPE-Prod",
"args": [], "args": [],
"projects": [] "projects": [
{
"paths": ["/bcn"]
},
{
"paths": ["/bcn/getcpe/produccion/./"]
}
]
} }
], ],
"disable_ai": false, "disable_ai": false,
@ -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": {