Replies: 3 comments 3 replies
-
Same here, what is Integration for more tools is cool and all, but they shouldn't be enabled by default IMO. |
Beta Was this translation helpful? Give feedback.
-
The new language server can be disabled with the following snippet in your settings.json: {
"languages": {
"Python": {
"language_servers": ["!pylsp", "..."]
}
} (source) |
Beta Was this translation helpful? Give feedback.
-
My biggest frustrations with zed (mainly for Python) are these:
"languages": {
"Python": {
"language_servers": ["pyright", "ruff", "!python-refactoring", "!pylsp"],
"enable_language_server": true,
"format_on_save": "on",
"formatter": [
{
"code_actions": {
"source.organizeImports.ruff": true,
"source.fixAll.ruff": true
}
},
{
"language_server": {
"name": "ruff"
}
}
]
}
},
"lsp": {
"pyright": {
"settings": {
"python.analysis": {
"ignore": ["*"],
"diagnosticMode": "off",
"typeCheckingMode": "off"
},
"python": {
"pythonPath": ".venv/bin/python"
}
}
},
"ruff": {
"initialization_options": {
"settings": {
// Ruff server settings goes here
"lineLength": 89,
"lint": {
"extendSelect": ["I"]
}
}
}
},
"pylsp": {
"settings": {
"plugins": {
"rope": {
"enabled": true
}
}
}
},
}, |
Beta Was this translation helpful? Give feedback.
-
What happened with Zed?! It went from the fastest IDE to the slowest one in two updates?!
My project now has .ropeproject folders inside, and .mypy_cache was added without my approval...
The code suggestion is now open after half a minute?!
I'm seriously thinking of going back to VS code.
Beta Was this translation helpful? Give feedback.
All reactions