Created
September 10, 2024 16:37
-
-
Save gdamjan/484192de92cde196a2ba06d8f17b7cf6 to your computer and use it in GitHub Desktop.
Zed setup for python (mostly) + relevant parts of pyproject.toml for ruff and pyright
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[tool.ruff] | |
line-length = 120 | |
[tool.ruff.lint] | |
extend-select = ["I"] | |
[tool.pyright] | |
venvPath = "." | |
venv = ".venv" | |
include = ["src"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ~/.config/zed/settings.json | |
// Zed settings | |
// | |
// For information on how to configure Zed, see the Zed | |
// documentation: https://zed.dev/docs/configuring-zed | |
// | |
// To see all of Zed's default settings without changing your | |
// custom settings, run the `open default settings` command | |
// from the command palette or from `Zed` application menu. | |
{ | |
"ui_font_size": 16, | |
"buffer_font_size": 16, | |
"theme": { | |
"mode": "system", | |
"light": "One Light", | |
"dark": "One Dark", | |
}, | |
"lsp": { | |
"pyright": { | |
"settings": { | |
"python": { | |
"pythonPath": ".venv/bin/python" | |
} | |
} | |
} | |
}, | |
"languages": { | |
"Python": { | |
"language_servers": ["pyright", "ruff"], | |
"format_on_save": "on", | |
"formatter": [ | |
{ | |
"code_actions": { | |
"source.organizeImports.ruff": true, | |
"source.fixAll.ruff": true | |
} | |
}, | |
{ | |
"language_server": { | |
"name": "ruff" | |
} | |
} | |
] | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment