Files
garandos/modules/home/zed/extra-packages.nix
GarandPLG a751485bf0 Add ruff LSP and Python tooling to Zed config
Add uv, python314, and ruff to extra packages.

Enable Python format‑on‑save, use ruff as formatter and language server,
and set tab size to 4.

Configure ruff LSP with a bash wrapper and detailed inlay‑hint options.
2026-02-11 16:07:36 +01:00

13 lines
169 B
Nix

{pkgs, ...}: {
programs.zed-editor.extraPackages = with pkgs; [
# biome
rust-analyzer
nixd
alejandra
opencode
uv
python314
ruff
];
}