Add a zed config file #86
mateusmeloxyz
started this conversation in
Ideas
Replies: 1 comment 1 reply
-
|
thanks for the heads up on this! |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
I'm currently using the Zed editor as my main coding editor, and I noticed that it comes with
pyrightactive by default.This is a problem because
pyrightraises import errors when there are none -- see screenshot bellow:Zed allows you to overwrite the default config on a per project basis with a
.zed/config.jsonfile on the root of the project.I found that through Zed's own documentation,
pyrightcan be disabled by putting the following code in the.zed/config.jsonfile on the root of the project:{ "languages": { "Python": { "language_servers": ["!pyright"] } } }Would this be a desirable change to the original template to help Zed users? That is: adding the zed config file to the original template disabling pyright. Or should users deal with it on a individual basis?
Would love to get your feedback on it! If approved, I may open a pull request so that the change can be applied.
Thank you in advance!
Beta Was this translation helpful? Give feedback.
All reactions