add zed settings to use deno instead of typescript lsp

This commit is contained in:
Jonas Seiler 2025-06-06 10:35:30 +02:00
parent 2f84c62133
commit 05b0c7df9b

25
.zed/settings.json Normal file
View File

@ -0,0 +1,25 @@
// Folder-specific settings
//
// For a full list of overridable settings, and general information on folder-specific settings,
// see the documentation: https://zed.dev/docs/configuring-zed#settings-files
{
"lsp": {
"deno": {
"settings": {
"deno": {
"enable": true
}
}
}
},
"languages": {
"TypeScript": {
"language_servers": [
"deno",
"!typescript-language-server",
"!vtsls",
"!eslint"
]
}
}
}