-
Notifications
You must be signed in to change notification settings - Fork 3
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Zed installation #65
Comments
We don't use Zed so we don't have any experience with it. I suggest following Zed's documentation regarding configuring language servers: https://zed.dev/docs/configuring-languages#configuring-language-servers |
This should be something along {
"lsp": {
// Your other lsp servers
"djlsp": {
"command": "path-to-djlsp-command",
"initialization_options": {
"django_settings_module": "<your.settings.module>"
}
},
},
"languages": {
"HTML": {
"language_servers": [ "some-other-lsp-server", "djlsp"]
},
// your other languages settings
}
}
Let me know how it goes for you @SwimGeek, I would be happy to open a PR once we get it working. |
@SwimGeek I have looked at the docs and looks like you need to create an extension for adding custom LSP support: https://zed.dev/docs/extensions/languages#language-servers For those who want to create this extension, maybe look at the HTML extension: https://github.com/zed-industries/zed/blob/main/extensions/html/src/html.rs |
Hi
Please add some info on getting this to work with the Zed editor.
The text was updated successfully, but these errors were encountered: